Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for closeConnChan (0.17 sec)

  1. src/net/http/httptest/server.go

    		}
    	}
    }
    
    // closeConn closes c.
    // s.mu must be held.
    func (s *Server) closeConn(c net.Conn) { s.closeConnChan(c, nil) }
    
    // closeConnChan is like closeConn, but takes an optional channel to receive a value
    // when the goroutine closing c is done.
    func (s *Server) closeConnChan(c net.Conn, done chan<- struct{}) {
    	c.Close()
    	if done != nil {
    		done <- struct{}{}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top