mirror of
https://github.com/soypat/lneto.git
synced 2026-08-13 11:23:42 +00:00
15 lines
241 B
Go
15 lines
241 B
Go
package internet
|
|
|
|
import "github.com/soypat/lneto"
|
|
|
|
type PortStack struct {
|
|
handlers []porthandler
|
|
proto lneto.IPProto
|
|
}
|
|
|
|
type porthandler struct {
|
|
recv func([]byte, int) error
|
|
handle func([]byte, int) (int, error)
|
|
port uint16
|
|
}
|