diff options
| author | Michael Brown | 2009-03-30 14:24:56 +0200 |
|---|---|---|
| committer | Michael Brown | 2009-03-30 14:24:56 +0200 |
| commit | 323cdf8c4c510fc6da081b96994d0131c11a29dd (patch) | |
| tree | 268806d5d1de34a96a446356a065057b060c7282 /src/net/tcp/http.c | |
| parent | [bzimage] Support old (pre-2.00 bootloader) Linux kernel formats (diff) | |
| download | ipxe-323cdf8c4c510fc6da081b96994d0131c11a29dd.tar.gz ipxe-323cdf8c4c510fc6da081b96994d0131c11a29dd.tar.xz ipxe-323cdf8c4c510fc6da081b96994d0131c11a29dd.zip | |
[xfer] Implement xfer_vreopen() to properly handle redirections
When handling a redirection event, we need to close the existing
connection before opening the new connection.
Diffstat (limited to 'src/net/tcp/http.c')
| -rw-r--r-- | src/net/tcp/http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/tcp/http.c b/src/net/tcp/http.c index 93ccfd3bd..b7cbea465 100644 --- a/src/net/tcp/http.c +++ b/src/net/tcp/http.c @@ -464,7 +464,7 @@ static void http_socket_close ( struct xfer_interface *socket, int rc ) { /** HTTP socket operations */ static struct xfer_interface_operations http_socket_operations = { .close = http_socket_close, - .vredirect = xfer_vopen, + .vredirect = xfer_vreopen, .window = unlimited_xfer_window, .alloc_iob = default_xfer_alloc_iob, .deliver_iob = http_socket_deliver_iob, |
