mirror of
https://gogs.blitter.com/RLabs/goutmp
synced 2024-08-14 19:26:41 +00:00
Added README.md
This commit is contained in:
parent
e5fe0ea0b3
commit
a850a7ed13
1 changed files with 14 additions and 0 deletions
14
README.md
Normal file
14
README.md
Normal file
|
@ -0,0 +1,14 @@
|
|||
goutmp - Minimal bindings to C stdlib pututmpx(), getutmpx() (/var/log/wtmp) and /var/log/lastlog
|
||||
|
||||
Any Go program which allows user shell access should update the standard UNIX files which track user sessions: /var/log/wtmp (for the 'w' and 'who' commands), and /var/log/lastlog (the 'last' and 'lastlog' commands).
|
||||
|
||||
go doc
|
||||
package goutmp // import "blitter.com/go/goutmp"
|
||||
|
||||
Golang bindings for basic login/utmp accounting
|
||||
|
||||
func Put_lastlog_entry(app string, usr string, host string)
|
||||
func Unput_utmp(entry UtmpEntry)
|
||||
type UtmpEntry struct{ ... }
|
||||
func Put_utmp(user string, host string) UtmpEntry
|
||||
|
Loading…
Reference in a new issue