Categorygithub.com/hslam/ftok
repositorypackage
1.0.0
Repository: https://github.com/hslam/ftok.git
Documentation: pkg.go.dev

# README

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.