Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ioctl (0.02 sec)

  1. src/vendor/golang.org/x/net/http/httpguts/httplex.go

    //	LWS            = [CRLF] 1*( SP | HT )
    func isLWS(b byte) bool { return b == ' ' || b == '\t' }
    
    // isCTL reports whether b is a control byte, according
    // to http://www.w3.org/Protocols/rfc2616/rfc2616-sec2.html#sec2.2
    //
    //	CTL            = <any US-ASCII control character
    //	                 (octets 0 - 31) and DEL (127)>
    func isCTL(b byte) bool {
    	const del = 0x7f // a CTL
    	return b < ' ' || b == del
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top