neoneo-go/pkg/connmgr/request.go

14 lines
191 B
Go
Raw Normal View History

2019-02-25 22:44:14 +00:00
package connmgr
import (
"net"
)
type Request struct {
Conn net.Conn
Addr string
Permanent bool
Inbound bool
Retries uint8 // should not be trying more than 255 tries
}