14 lines
191 B
Go
14 lines
191 B
Go
|
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
|
||
|
}
|