Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isCommonNetReadError (0.25 sec)

  1. src/net/http/server.go

    var ErrAbortHandler = errors.New("net/http: abort Handler")
    
    // isCommonNetReadError reports whether err is a common error
    // encountered during reading a request off the network when the
    // client has gone away or had its read fail somehow. This is used to
    // determine which logs are interesting enough to log about.
    func isCommonNetReadError(err error) bool {
    	if err == io.EOF {
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top