Ecosyste.ms: OpenCollective

An open API service for software projects hosted on Open Collective.

github.com/ooni/oohttp

Fork of Go stdlib's net/http that works with alternative TLS libraries like refraction-networking/utls.
https://github.com/ooni/oohttp

net/http: fix a typo in spelling of MultiPartForm

Change-Id: I33a5313ef10e8c88d9c12507573b385fa0843afe
GitHub-Last-Rev: 844d4351583e3f2e94d6420dcd...

f6233c683dd6e4ba4e38d618600fac376a532c79 authored over 5 years ago
all: remove os.ErrTemporary

As discussed in
https://github.com/golang/go/issues/32463#issuecomment-506833421
the classificat...

40d1ec34dcb622673c3ffae008f84ccb430a2bb4 authored over 5 years ago
net/http: return nil from Header.Clone if the receiver is nil

Fixes #33141

Change-Id: I84a8b3496fc9396fd1c09ba9505697c34bdf7105
Reviewed-on: https://go-revie...

0391cda0273ef50a6e910175913d74b7ca9b2594 authored over 5 years ago
net/http: improve Request.Form and Request.PostForm documentation

Request.PostForm gets populated with form data for PATCH, POST, or PUT
http verbs.

Change-Id: I...

5bb771db560a77ebd9c8f27fe7cd3c100441fdf5 authored over 5 years ago
net/http/httputil: fix regression in ReverseProxy.ServeHTTP

In Go1.12 and below, the logic in ReverseProxy.ServeHTTP would always
allocate request.Header ev...

47bec1b52e1412b676b544a3dd4cb1d635a23f1c authored over 5 years ago
net/http: fix Transport.MaxConnsPerHost limits & idle pool races

There were at least three races in the implementation of the pool of
idle HTTP connections befor...

540615189fd833cb43948d3ffaeb3fab48063a84 authored over 5 years ago
net/http: stop ExampleServer_Shutdown from hanging on error

Running the example code when not having permissions
to bind to port 80 will cause the program t...

2ae9b17ce5914379ad6bc893236dd0b376c8d0cd authored over 5 years ago
net/http: fix Server.IdleTimeout and Server.ReadHeaderTimeout docs

CL 46434 changed the doc for Server.IdleTimeout to include
falling back to Server.ReadHeaderTime...

e71718476cf0390dddb2b41ab1fa0f84cb64229b authored over 5 years ago
doc, net/http: add release notes for net/http and fix doc comments

Change-Id: I684e3522e387b2d96d5cfb2878d2f77bf4558443
Reviewed-on: https://go-review.googlesource...

05de02c5d2cde7b52203056186119e252558e0fb authored over 5 years ago
net/http: support BaseContext & ConnContext for http2 Server

This is the net/http half of #32476. This supplies the method needed
by the other half in x/net/...

c6c86815151308b311f2b746fa5b977ddcf29123 authored over 5 years ago
net/http: roll back "clean the path of the stripped URL by StripPrefix"

Roll back CL 161738. That fix changed StripPrefix behavior in the
general case, not just in the ...

4e68d2ee0c1810a5062bc2d861f14727033989e6 authored over 5 years ago
net/http: prevent Transport from spamming stderr on server 408 reply

HTTP 408 responses now exist and are seen in the wild (e.g. from
Google's GFE), so make Go's HTT...

4a523f8794c73038e5274679e925d0318868f6c4 authored over 5 years ago
net/http: enable WASM fetch where supported

The existing check was introduced to allow tests to pass
on WASM without an environment where th...

78f82b81a318b2a13f5037b6f3c2e7ea9389b4b9 authored over 5 years ago
net/http: quiet some log spam in tests

One of these tests creates a bunch of connections concurrently, then
discovers it doesn't need t...

fc1c15a2faf2c6d7f1ce0656b407265f626bd47b authored over 5 years ago
net/http: fix TestTransportServerClosingUnexpectedly flake

Fixes #32119

Change-Id: I8cf2e2e69737e2485568af91ab75149f3cf66781
Reviewed-on: https://go-revie...

b8ab901a26c32cae31eb9c3e7b3c2f8e60dbcded authored over 5 years ago
syscall/js: replace TypedArrayOf with CopyBytesToGo/CopyBytesToJS

The typed arrays returned by TypedArrayOf were backed by WebAssembly
memory. They became invalid...

da65fe4be2482cff2a22a02c17b36cd4e0058aaa authored over 5 years ago
all: shorten some tests

Shorten some of the longest tests that run during all.bash.
Removes 7r 50u 21s from all.bash.

A...

5fae2c1d5ad3fa368630d7eeadb6bad85f875dfa authored over 5 years ago
all: remove PEM-encoded private keys from tests

Gerrit is complaining about pushes that affect these files
and forcing people to use -o nokeyche...

00b28ce129f032f030c938583a20c7aee100dbda authored over 5 years ago
net/http/httptest: update docs, remove old inaccurate sentence

The "After it is called, changing rw.Header will not affect
rw.HeaderMap" claim predates the Res...

9a1c1630ccae637204d93fd55d5d13e07273d3b5 authored over 5 years ago
net/http/httputil: remove os.Stderr claim in ReverseProxy.ErrorLog docs

The motivation for doing so is to avoid making inaccurate claims.
Logging may not go to os.Stder...

d75ce09d8be8bca13d62ac78c2e5f490cb435713 authored over 5 years ago
net/http: update vendored, bundled x/net/http2

For:

http2: track reused connections
https://golang.org/cl/176720 (updates golang/go#31...

35e2f5f67f5722daec8a0ad14f5c928b0d8622b3 authored over 5 years ago
net/http/httputil: remove all fields in Connection header

In the reverseproxy, replace use (Header).Get, which returns only one value
of a multiple value ...

895eb64a3ae31daa7e7e968cbf757519b64ccd11 authored over 5 years ago
net/http: add support for SameSite=None

Section 4.2 of the Internet-Draft for SameSite includes the possible
SameSite value of "None".

...

454adf3a05f9f9eeb09e96751610897da1da6815 authored over 5 years ago
net/http: update bundled x/net/http2

Updates x/net/http2 to git rev 1da14a5a36f220ea3f03470682b737b1dfd5de22 for:

http2: make em...

35dab2af21f4e51742e6a601ba88dcc3c1fc6ebe authored over 5 years ago
all: add Unwrap and Is methods to various error types

Add Unwrap methods to types which wrap an underlying error:

"encodinc/csv".ParseError
"enco...

f0b194348c406d71cea5dccc968f635db078fbe9 authored over 5 years ago
net/http: fix TestTransportMaxConnsPerHost flakes

The testcase created a race between the close of the current connection
and the client grabbing ...

271ce5cd42237de02b5ae4e281665424f7df6a62 authored over 5 years ago
net/http: strip escaped password from error

Using password that returns from User.Password() won't work in this case
because password in Use...

461ae949245c1383799a794a148dcdcdadea2f0a authored over 5 years ago
net/http: add func NewRequestWithContext, Request.Clone

Fixes #23544

Change-Id: Iaa31d76c4cda8ce22412d73c9025fc57e4fb1967
Reviewed-on: https://go-revie...

5ccd6c8d016b7f6b863bc6d19247ac8e5e22e59e authored over 5 years ago
net/http: add Transport.Clone

Fixes #26013

Change-Id: I2c82bd90ea7ce6f7a8e5b6c460d3982dca681a93
Reviewed-on: https://go-revie...

059ed243e6e703b100253b627a1bedfcaa9221c5 authored over 5 years ago
net/http: skip flaky TestTransportMaxConnsPerHost for now

Updates #31784

Change-Id: Iee056c850c03939606b227a12715c76b0339d268
Reviewed-on: https://go-rev...

4470bc9f171adc56cf193e8a8bea802f3b57d15a authored over 5 years ago
net/http: make Transport.MaxConnsPerHost work for HTTP/2

Treat HTTP/2 connections as an ongoing persistent connection. When we
are told there is no cache...

5f62babc2a4c32f6a13b6e45af64ba3097b2a799 authored over 5 years ago
net/http: add Transport.ReadBufferSize and WriteBufferSize

Previously transport was using the hardcoded bufio.defaultBufSize
(4096), limiting throughput an...

3d211764a97c6d7e5087be1d21d61c7ccaf5051c authored over 5 years ago
net/http: make Server return 501 for unsupported transfer-encodings

Ensures that our HTTP/1.X Server properly responds
with a 501 Unimplemented as mandated by the s...

433b47cf5eb4f074c93058a368fd55c047d2e7bc authored over 5 years ago
net: correct docs of KeepAlive field in Dialer type

KeepAlive field used to report the wording "keep-alive period"
which may be misleading. This fie...

3e2c72de14c41a94ce3cc4a1cc0f738561939fa8 authored over 5 years ago
net/http: remove "number:" from Response.Status string

The behavior of Value.String method on non-string JavaScript types has
changed after CL 169757.
...

379d5bf782549e6c77b123f1a02706976d4e6835 authored over 5 years ago
net/http: export Header.Clone, reduce its allocations, use it everywhere

Fixes #29915

Change-Id: I6e6edf4f9a0e062211f74d120ae1a242bce1b274
Reviewed-on: https://go-revie...

3fc7234afca5f2251cd6604fa5a0c45d2bcb08b4 authored almost 6 years ago
net/http: document that Basic Auth may require URL encoding

Explicitly warn callers that no URL encoding is performed and
that they might need to do it.

Fi...

b8c046312f35f0a2e18f062340d9341118890ee8 authored almost 6 years ago
all: s/cancelation/cancellation/

Though there is variation in the spelling of canceled,
cancellation is always spelled with a dou...

0cb6288354bb8d613e519757641139b7b1bee584 authored almost 6 years ago
net/http: rename DialerAndTLSConfigSupportsHTTP2 to ForceAttemptHTTP2

Transport.DialerAndTLSConfigSupportsHTTP2 was added just earlier
in CL 130256 but we thought of ...

7a91cca1f45741e8f1de7612df8bf317437e2cde authored almost 6 years ago
net/http: introduce DialerAndTLSConfigSupportsHTTP2 in Transport

Even when a custom TLS config or custom dialer is specified,
enables HTTP/2 if DialerAndTLSConfi...

3855de13727b25c2d86887deab0403c00b736580 authored almost 6 years ago
all: clean up code with token.IsExported

A handful of packages were reimplementing IsExported, so use
token.IsExported instead. This caus...

b320a93f4331e2eca6c2e49b79af7d76cd4cbf5c authored almost 6 years ago
net/http: remove unnecessary string replace operation in Cookie.String

Fixes #29135

Change-Id: I4c10b0395047775e8488b8b0f00f74a7fa01b86c
GitHub-Last-Rev: 120977040506...

d584fb81ba795bb5098ea5ad2258e746af0608d1 authored almost 6 years ago
net/http: speed up parsing of Cookie headers

Parse the headers without splitting them upfront to reduce
memory allocations.

For non-patholog...

e5f630f6db5a88594d875084011bd7a34838e3a9 authored almost 6 years ago
net/http: add Server BaseContext & ConnContext fields to control early context

Fixes golang/go#30694

Change-Id: I12a0a870e4aee6576e879d88a4868666ef448298
Reviewed-on: https:/...

d7dc9ac1998b95f8dad1ff3e418025558fa8287e authored almost 6 years ago
net: add KeepAlive field to ListenConfig

This commit adds a KeepAlive field to ListenConfig and uses it
analogously to Dialer.KeepAlive t...

4741cf1dba4349dcaed062eaea0160f372be0af4 authored almost 6 years ago
net/http/httputil: make ReverseProxy flush headers on FlushInterval

A regression was introduced in CL 137335 (5440bfc) that caused FlushInterval
to not be honored u...

3847f5f4030821c3632eaffd135843d213f84ac7 authored almost 6 years ago
net/http: fix typo in Response.Body field docs

Fixes #31096

Change-Id: I5b36bfc6d18eb8c1bbf15abcd92b0e6559cda3c8
Reviewed-on: https://go-revie...

af1c1d3f703a85a674a7bb5d57500f0699791b1b authored almost 6 years ago
net/http: reduce allocs on write cookie

Pregrow buffer to reduce allocs on building cookie string.
We calc cookie name value and domain ...

816f5ce2c52ebf5e53ef27eb36ea0e4c209445d6 authored almost 6 years ago
net/http: fix wrong mime rar signature

MIME sniffing standard defines the RAR signature as 52 61 72 20 1A 07 00.

But this signature is...

3b7ddcd2b62dec892a933afb4dbe59b5f657205f authored almost 6 years ago
net/http: Detect MIME type of v5 RAR archives

Change-Id: Id9dedc861523e2dafe0e67f70862973124fa07b3
GitHub-Last-Rev: b662561f1980dff9861dd8a738...

c2a8a9ed6785f97a3ed3cffc44fbb9541331763f authored almost 6 years ago
net/http: add missing error checks in tests

Change-Id: I73441ba2eb349f0e0f25068e6b24c74dd33f1456
GitHub-Last-Rev: b9e6705962b94af3b1b720cc9a...

98943a20031ce638faf556f8aee45b9902524b56 authored almost 6 years ago
all: move internal/x to vendor/golang.org/x and revendor using 'go mod vendor'

This also updates the vendored-in versions of several packages: 'go
mod vendor' selects a consis...

3cf4ea5d2679fdd6dfbb6a4ed5f8d70617430f77 authored almost 6 years ago
net/http: let Transport request body writes use sendfile

net.TCPConn has the ability to send data out using system calls such as
sendfile when the source...

8ba174039ea06e50836986fd7f663ba8e6206876 authored almost 6 years ago
net/http: unfurl persistConnWriter's underlying writer

Make persistConnWriter implement io.ReaderFrom, via an io.Copy on the
underlying net.Conn. This ...

8b3c681db12c96497dc0f272d838bffc670f4ae2 authored almost 6 years ago
net/http: remove discrepancies between the MIME Sniffing Spec and its implementation

The change fixes the following deviations between the existing implementation and the Spec:
1. U...

fbbb5858459be3ab89ad3a29e4c44cac5ab98fd7 authored almost 6 years ago
net/http: add request file upload benchmarks

This adds benchmarks to test file uploads using PUT requests.

It's designed to complement chang...

8ada74dd88eb4b7e83d382fb058148e8cc08d110 authored almost 6 years ago
net/http: add corner cases for readCookiesTests

The following corner cases for readCookiesTests are tested now:
- An extra cookie delimiter ";"...

8e00c36140899b2808417dcff547ba6264331cbe authored almost 6 years ago
all: join a few chained ifs

I had been finding these over a year or so, but none were big enough
changes to warrant CLs. The...

4da35f8002025f5c416f37cdd87e6e5493470d4e authored almost 6 years ago
net/http: support configuring redirect fetch option

Adds a magic header value that is translated to the
Fetch API redirect option, following existin...

7ae076c9bff95ef4e8c3c03df3f15ecb0427ca75 authored almost 6 years ago
net/http: make TimeoutHandler's ResponseWriter implement Pusher

Fixes #29193

Change-Id: I03088205e51036abbc861ab5b7d141327b0429ae
Reviewed-on: https://go-revie...

8623d1ac2c983cc242a7868b9fa5e6ea3f7d9ed8 authored almost 6 years ago
net/http: update net/http package to replace a broken link with an archive link

replaces broken link with a web.archive.org link.

Change-Id: I438536a6ac51d837c30be5df7d3d0caad...

583551c16fbe4b4c6ca8cf9b92fffe25108eb50f authored almost 6 years ago
net/http: add StatusEarlyHints (103)

HTTP status code 103 (Early Hints) from RFC 8297.

Fixes #29655

Change-Id: Ia1edbb561ee46f42d7f...

e39a681a874c30ae92378c58ec3b8db914b6db89 authored almost 6 years ago
net/http: remove use of DeepEqual for testing errors

Comparing errors using DeepEqual breaks if frame information
is added as proposed in Issue #2993...

64adb33dfde0febe0b2adf43f47668d83e26f570 authored almost 6 years ago
net/http: add godoc for Dir.Open function

This commit adds godoc for Dir.Open function.

Change-Id: Ibc3b22f38660a082802e1f868c5cf9d880fc2...

28831acfd9f899c4356f45eee555595f44c3d289 authored almost 6 years ago
net/http: clean the path of the stripped URL by StripPrefix

The path of the new stripped URL should also be cleaned. Since an empty path
may cause unexpecte...

1a230ee7deacceb2a23785edba97603e00e87ee2 authored almost 6 years ago
net/http/httputil: make TestDumpRequest idempotent

TestDumpRequest was failing with -count=2 or more
because for test cases that involved mustReadR...

b5a1f20a34ff747544939e73e4c50cbea36d65b4 authored almost 6 years ago
net/http/httptrace: fix typo

Change-Id: I15279e4aa9306bde925929907a7b5e7ef5d8b642
GitHub-Last-Rev: 6bc2d66aecd424b322ec0c23b2...

5f17c7d2150c9670456d3d8dd98dd983c873a113 authored almost 6 years ago
net/url, net/http: relax CTL-in-URL validation to only ASCII CTLs

CL 159157 was doing UTF-8 decoding of URLs. URLs aren't really UTF-8,
even if sometimes they are...

b21c4fbff7357646e3a9a236ad7a74a9f1526c6d authored almost 6 years ago
net/http: update bundled http2

Updates bundled http2 to x/net git rev ed066c81e7 for:

http2: Revert a closed stream cannot...

7bfd7882f55f471f1b4467d51530a9d9d4d57134 authored about 6 years ago
net/url, net/http: reject control characters in URLs

This is a more conservative version of the reverted CL 99135 (which
was reverted in CL 137716)

...

a9a35214aa992ba3a12af9c906b4f2bdae050ae4 authored about 6 years ago
net/http: clarify Transport connection reuse docs a bit

Updates #26095 (or fixes it)

Change-Id: I92488dabe823b82e1ba534648fe6d63d25d0ae9f
Reviewed-on: ...

425a60f4ad4c770081377179abd4cfe20ee89810 authored about 6 years ago
net/http/httputil: run the ReverseProxy.ModifyResponse hook for upgrades

Fixes #29627

Change-Id: I08a5b45151a11b5a4f3b5a2d984c0322cf904697
Reviewed-on: https://go-revie...

a6da4bdca3b3cadd29ade444adb5d66eb18cb5b3 authored about 6 years ago
net/http/httputil: fix typo in ReverseProxy godoc

Change-Id: Iea33fe64403ca2e6f87a4e070af5e97d96506e41
Reviewed-on: https://go-review.googlesource...

5bea4f207cca730b5fcb468fa9bfd751a9fe9302 authored about 6 years ago
net/http/httputil: fix missing previous headers in response when switching protocol in ReverseProxy

When using switching protocol, previous headers set before the reverse proxy are lost.

Fixes #2...

6832d79b77bfd114419bf1713d21a22995c83b24 authored about 6 years ago
net/http: fix typographical error in transport.go

Change-Id: I5f9de0daa3c18ecd7d6cd30ea13d147e227b3550
GitHub-Last-Rev: 5eabcbd91f8988c8f74f5bd11f...

0969e65d5b3391d2c7e76c7aec4573b54e2140e2 authored about 6 years ago
net/http: fix the old url about deflate

Change-Id: Iaa1468296fbc98389165a152cf8b591216c22489
Reviewed-on: https://go-review.googlesource...

2db7b98989608a06cd2cdbf0d1409eaa5231d6b3 authored about 6 years ago
net/http/httptest: don't register a flag unless it looks like it's in use

We shouldn't pollute people's flags with this debugging flag that was
never really meant to be p...

58a09cf10311bb1be15a9ebce7215782af6bdf79 authored about 6 years ago
syscall/js: rename js.Callback to js.Func

The name "Callback" does not fit to all use cases of js.Callback.
This commit changes its name t...

d0b047b468dbc1b0dd27635b4370137484eb1ada authored about 6 years ago
net/http/httputil: add tests for singleJoiningSlash.

These changes add tests for the unexported function singleJoiningSlash.

Change-Id: I107905aac4a...

90e76d52191c118e777c2cb6ea81bdcadef4ab0e authored about 6 years ago
net/http/httputil: fix unannounced trailers when body is empty

Fix unannounced trailers when body is empty and without announced trailers.

Fixes #29031

Chang...

606a82993ff8ea1404257c216c741c1149c724dc authored about 6 years ago
net/http: document CanonicalHeaderKey from Header

And remove some unnecessary textproto references. (The net/http
package's CanonicalHeaderKey jus...

28088e4faf7a30e42acc91bd5e40310311f7b921 authored about 6 years ago
net/http: add StatusTooEarly (425)

StatusTooEarly can be returned to indicate that a server is unwilling
to accept early data as in...

46a1299f27e2edb90345e81bcd8efe157e08b0bf authored about 6 years ago
all: use "reports whether" consistently instead of "returns whether"

Follow-up for CL 147037 and after Brad noticed the "returns whether"
pattern during the review o...

457c9e4b031db94b92d74545d854fc390baf145f authored about 6 years ago
net/http: update bundled x/net/http2

This updates x/net/http2 to x/net git rev 351d144f for:

http2: revert Transport's strict int...

b357adcf43560665f3ee3266527ec0ba4df48588 authored about 6 years ago
vendor/golang_org/x: move to internal/x

Packages in vendor/ directories have a "vendor/" path prefix in GOPATH
mode, but intentionally d...

8a09a80ff08ce832a04b7479ddd76a811f598f60 authored about 6 years ago
net/http: prevent transport sends two "Connection: close" headers

There are three functions that do Connection header write:
1. transport.go/ persistConn.roundTri...

55e828433a8b5097b82be93b22d2de0a55c18c2d authored about 6 years ago
net/http: fix spelling mistake in a comment

Fixes #28904

Change-Id: I8d416c47479a266735a39c926fd2f0f2bb25d57b
GitHub-Last-Rev: 3a7865a5be27...

c565ce953866aa4e2e954aa87bb5960c872b8765 authored about 6 years ago
net/http: fix typo in the SameSite docs

Fixes #28244

Change-Id: I3ca36fd513f5543af0c8af254d267254c7d5e803
GitHub-Last-Rev: 83b16fac4e22...

c7a9c11f149a86ed4daa5b23cad25a5722b8c3b6 authored about 6 years ago
net/http: make Transport respect {X-,}Idempotency-Key header

Fixes #19943

Change-Id: I5e0fefe44791d7b3556095d726c2a753ec551ef2
Reviewed-on: https://go-revie...

2250b387a8ea53b8126748698711db776e349b3a authored about 6 years ago
net/http/httputil: make ReverseProxy automatically proxy WebSocket requests

Fixes #26937

Change-Id: I6cdc1bad4cf476cd2ea1462b53444eccd8841e14
Reviewed-on: https://go-revie...

26c21c2a6d6a2967cfd19c9f8a7f495ca4e6dafd authored about 6 years ago
crypto/tls: enable TLS 1.3 and update tests

To disable TLS 1.3, simply remove VersionTLS13 from supportedVersions,
as tested by TestEscapeRo...

0223f080922ce31a069af4d17521303ad7b60814 authored about 6 years ago
all: add support for synchronous callbacks to js/wasm

With this change, callbacks returned by syscall/js.NewCallback
get executed synchronously. This ...

4b5cf1a23595c9d730acf16fe04bf6837eaa4822 authored about 6 years ago
net/http: update bundled SOCKS client

Updates socks_bundle.go to git rev 26e67e7 for:
- 26e67e7 internal/socks: fix socket descriptor ...

cbefe46fe03c9c37cd6ce52f4b41a189b3bc8cd8 authored about 6 years ago
net/http: speed up ServeMux matching

Scanning through all path patterns is not necessary, since the
paths do not change frequently. ...

38ecdc16e0d4e9a2785cc4cd403d28d9ac4fcb4f authored about 6 years ago
net/http: in Transport, don't error on non-chunked response with Trailer header

There are cases where HTTP message specifies the Trailer header
but not the Transfer-Encoding = ...

28356d4337d2cde0f82c963b81b90e47153c111f authored about 6 years ago
net: make cgo resolver work more accurately with network parameter

Unlike the go resolver, the existing cgo resolver exchanges both DNS A
and AAAA RR queries uncon...

31e4d5be512f309094470ba95efb1112f80bcb72 authored over 6 years ago
net/http: fix comment change omitted between versions of CL 143177

Updates #23689

Change-Id: Icddec2fcc39802cacd651a9c94290e86cf1e48d1
Reviewed-on: https://go-rev...

c282aff9d9acc154b9e318e42c032d18c34d9460 authored over 6 years ago
crypto/tls, net/http: reject HTTP requests to HTTPS server

This adds a crypto/tls.RecordHeaderError.Conn field containing the TLS
underlying net.Conn for n...

f1a4ef2abaeb3996307c4fbd43afd73859890314 authored over 6 years ago
net/http: flesh out Transport's HTTP/1 CONNECT+bidi support to match HTTP/2

Fixes #17227

Change-Id: I0f8964593d69623b85d5759f6276063ee62b2915
Reviewed-on: https://go-revie...

c194f617ef5e4cdeb63da8a2c87f350aacb0f65e authored over 6 years ago
net/http/httputil: fix race/crash in previous ReverseProxy change

The previous ReverseProxy change, CL 137335, introduced a bug which could cause
a race and/or a ...

d637fc07b5a372a5a870a6a3115144130c9082b1 authored over 6 years ago