checking in net - i'll have to finish it later, but i'm getting there.

This commit is contained in:
2021-02-24 00:48:41 -05:00
parent bb786855fc
commit 55ac47c869
14 changed files with 15136 additions and 0 deletions

14278
net/ports/data.go Normal file

File diff suppressed because it is too large Load Diff

1
net/ports/funcs.go Normal file
View File

@@ -0,0 +1 @@
package ports

13
net/ports/types.go Normal file
View File

@@ -0,0 +1,13 @@
package ports
import (
"r00t2.io/sysutils/net/protos"
)
type IPPort struct {
Number uint16
Protocol *protos.IPProto
ServiceName string
Description string
Reserved bool
}