cwtch/peer/connections/state.go

11 lines
132 B
Go
Raw Normal View History

package connections
type ConnectionState int
const (
DISCONNECTED ConnectionState = iota
CONNECTING
CONNECTED
AUTHENTICATED
)