Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 150 for 7230 (0.03 sec)

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

    package httpguts
    
    import (
    	"net/textproto"
    	"strings"
    )
    
    // ValidTrailerHeader reports whether name is a valid header field name to appear
    // in trailers.
    // See RFC 7230, Section 4.1.2
    func ValidTrailerHeader(name string) bool {
    	name = textproto.CanonicalMIMEHeaderKey(name)
    	if strings.HasPrefix(name, "If-") || badTrailer[name] {
    		return false
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 20:28:54 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/http/httpguts/httplex.go

    	for _, v := range values {
    		if headerValueContainsToken(v, token) {
    			return true
    		}
    	}
    	return false
    }
    
    // isOWS reports whether b is an optional whitespace byte, as defined
    // by RFC 7230 section 3.2.3.
    func isOWS(b byte) bool { return b == ' ' || b == '\t' }
    
    // trimOWS returns x with all optional whitespace removes from the
    // beginning and end.
    func trimOWS(x string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. src/net/http/httptest/httptest.go

    }
    
    // NewRequestWithContext returns a new incoming server Request, suitable
    // for passing to an [http.Handler] for testing.
    //
    // The target is the RFC 7230 "request-target": it may be either a
    // path or an absolute URL. If target is an absolute URL, the host name
    // from the URL is used. Otherwise, "example.com" is used.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 18:09:14 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/Protocol.kt

       */
      HTTP_1_0("http/1.0"),
    
      /**
       * A plaintext framing that includes persistent connections.
       *
       * This version of OkHttp implements [RFC 7230][rfc_7230], and tracks revisions to that spec.
       *
       * [rfc_7230]: https://tools.ietf.org/html/rfc7230
       */
      HTTP_1_1("http/1.1"),
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:17:33 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. src/net/http/transfer.go

    func (t *transferReader) protoAtLeast(m, n int) bool {
    	return t.ProtoMajor > m || (t.ProtoMajor == m && t.ProtoMinor >= n)
    }
    
    // bodyAllowedForStatus reports whether a given response status code
    // permits a body. See RFC 7230, section 3.3.
    func bodyAllowedForStatus(status int) bool {
    	switch {
    	case status >= 100 && status <= 199:
    		return false
    	case status == 204:
    		return false
    	case status == 304:
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. src/net/http/httptest/recorder.go

    		for _, k := range trailers {
    			for _, k := range strings.Split(k, ",") {
    				k = http.CanonicalHeaderKey(textproto.TrimString(k))
    				if !httpguts.ValidTrailerHeader(k) {
    					// Ignore since forbidden by RFC 7230, section 4.1.2.
    					continue
    				}
    				vv, ok := rw.HeaderMap[k]
    				if !ok {
    					continue
    				}
    				vv2 := make([]string, len(vv))
    				copy(vv2, vv)
    				res.Trailer[k] = vv2
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. src/net/textproto/reader.go

    		}
    	}
    }
    
    // noValidation is a no-op validation func for readContinuedLineSlice
    // that permits any lines.
    func noValidation(_ []byte) error { return nil }
    
    // mustHaveFieldNameColon ensures that, per RFC 7230, the
    // field-name is on a single line, so the first line must
    // contain a colon.
    func mustHaveFieldNameColon(line []byte) error {
    	if bytes.IndexByte(line, ':') < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  8. src/net/http/httputil/reverseproxy.go

    func removeHopByHopHeaders(h http.Header) {
    	// RFC 7230, section 6.1: Remove headers listed in the "Connection" header.
    	for _, f := range h["Connection"] {
    		for _, sf := range strings.Split(f, ",") {
    			if sf = textproto.TrimString(sf); sf != "" {
    				h.Del(sf)
    			}
    		}
    	}
    	// RFC 2616, section 13.5.1: Remove a set of known hop-by-hop headers.
    	// This behavior is superseded by the RFC 7230 Connection header, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  9. src/net/http/request.go

    	//
    	// For server requests, the URL is parsed from the URI
    	// supplied on the Request-Line as stored in RequestURI.  For
    	// most requests, fields other than Path and RawQuery will be
    	// empty. (See RFC 7230, Section 5.3)
    	//
    	// For client requests, the URL's Host specifies the server to
    	// connect to, while the Request's Host field optionally
    	// specifies the Host header value to send in the HTTP
    	// request.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  10. test/inline_big.go

    	a[701] = 0
    	a[702] = 0
    	a[703] = 0
    	a[704] = 0
    	a[705] = 0
    	a[706] = 0
    	a[707] = 0
    	a[708] = 0
    	a[709] = 0
    	a[710] = 0
    	a[711] = 0
    	a[712] = 0
    	a[713] = 0
    	a[714] = 0
    	a[715] = 0
    	a[716] = 0
    	a[717] = 0
    	a[718] = 0
    	a[719] = 0
    	a[720] = 0
    	a[721] = 0
    	a[722] = 0
    	a[723] = 0
    	a[724] = 0
    	a[725] = 0
    	a[726] = 0
    	a[727] = 0
    	a[728] = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 18 11:58:37 UTC 2023
    - 12.7K bytes
    - Viewed (0)
Back to top