type net/http.ConnState
9 uses
net/http (current package)
h2_bundle.go#L4511: func (sc *http2serverConn) setConnState(state ConnState) {
server.go#L1794: func (c *conn) setState(nc net.Conn, state ConnState, runHook bool) {
server.go#L1815: func (c *conn) getState() (state ConnState, unixSec int64) {
server.go#L1817: return ConnState(packedState & 0xff), int64(packedState >> 8)
server.go#L2691: ConnState func(net.Conn, ConnState)
server.go#L2873: type ConnState int
server.go#L2880: StateNew ConnState = iota
server.go#L2911: var stateName = map[ConnState]string{
server.go#L2919: func (c ConnState) String() string {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |