type net/http.conn

18 uses

	net/http (current package)
		server.go#L248: type conn struct {
		server.go#L304: func (c *conn) hijacked() bool {
		server.go#L311: func (c *conn) hijackLocked() (rwc net.Conn, buf *bufio.ReadWriter, err error) {
		server.go#L419: 	conn             *conn
		server.go#L633: func (srv *Server) newConn(rwc net.Conn) *conn {
		server.go#L634: 	c := &conn{
		server.go#L657: 	conn *conn
		server.go#L957: func (c *conn) readRequest(ctx context.Context) (w *response, err error) {
		server.go#L1685: func (c *conn) finalFlush() {
		server.go#L1703: func (c *conn) close() {
		server.go#L1729: func (c *conn) closeWriteAndWait() {
		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#L1817: func (c *conn) serve(ctx context.Context) {
		server.go#L2649: 	activeConn map[*conn]struct{}
		server.go#L3083: func (s *Server) trackConn(c *conn, add bool) {
		server.go#L3087: 		s.activeConn = make(map[*conn]struct{})
		server.go#L3508: 	c *conn