type net/http.ConnState

13 uses

	net/http (current package)
		h2_bundle.go#L4348: func (sc *http2serverConn) setConnState(state ConnState) {
		server.go#L1753: func (c *conn) setState(nc net.Conn, state ConnState, runHook bool) {
		server.go#L1774: func (c *conn) getState() (state ConnState, unixSec int64) {
		server.go#L1776: 	return ConnState(packedState & 0xff), int64(packedState >> 8)
		server.go#L2635: 	ConnState func(net.Conn, ConnState)
		server.go#L2839: type ConnState int
		server.go#L2846: 	StateNew ConnState = iota
		server.go#L2877: var stateName = map[ConnState]string{
		server.go#L2885: func (c ConnState) String() string {

	net/http/httptest
		server.go#L53: 	conns  map[net.Conn]http.ConnState // except terminal states
		server.go#L316: 	s.Config.ConnState = func(c net.Conn, cs http.ConnState) {
		server.go#L326: 				s.conns = make(map[net.Conn]http.ConnState)

	golang.org/x/net/http2
		server.go#L694: func (sc *serverConn) setConnState(state http.ConnState) {