mirror of https://github.com/hslam/ftok.git
2977a95e37 | ||
---|---|---|
.github/workflows | ||
.DS_Store | ||
.gitignore | ||
LICENSE | ||
README.md | ||
ftok.go | ||
ftok_test.go |
README.md
ftok
Package ftok provides a way to generate a System V IPC key, suitable for using with msgget, semget, or shmget.
Get started
Install
go get github.com/hslam/ftok
Import
import "github.com/hslam/ftok"
Usage
Example
package main
import (
"fmt"
"github.com/hslam/ftok"
)
func main() {
key, err := ftok.Ftok("/tmp", 0x22)
if err != nil {
return
}
fmt.Printf("%x", key)
}
License
This package is licensed under a MIT license (Copyright (c) 2020 Meng Huang)
Author
ftok was written by Meng Huang.