Go to file
hslam 5dbf083931 rm .DS_Store 2020-12-22 09:32:08 +08:00
.github/workflows migrate from travis-ci to actions 2020-12-18 12:58:16 +08:00
.gitignore
LICENSE
README.md migrate from travis-ci to actions 2020-12-18 12:58:16 +08:00
ftok.go
ftok_test.go

README.md

ftok

PkgGoDev Build Status codecov Go Report Card LICENSE

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.