Describe all packages and binaries.

This commit is contained in:
Michael Stapelberg 2018-06-25 20:12:51 +02:00
parent a881f6b61e
commit 60de127991
6 changed files with 6 additions and 17 deletions

View File

@ -1,3 +1,5 @@
// Binary captured streams network packets to wireshark via SSH, replaying
// buffered packets upon connection for retroactive debugging.
package main package main
import ( import (

View File

@ -1,3 +1,4 @@
// Binary random carries entropy across restarts.
package main package main
import ( import (

View File

@ -1,17 +0,0 @@
package main
import (
"flag"
"log"
)
func logic() error {
return nil
}
func main() {
flag.Parse()
if err := logic(); err != nil {
log.Fatal(err)
}
}

View File

@ -1,3 +1,4 @@
// Package dns implements a DNS forwarder.
package dns package dns
import ( import (

View File

@ -1,3 +1,4 @@
// Package netconfig implements network configuration (interfaces, addresses, firewall rules, …).
package netconfig package netconfig
import ( import (

View File

@ -1,3 +1,4 @@
// Package notify implements sending signals (such as SIGUSR1) to processes.
package notify package notify
import ( import (