summaryrefslogtreecommitdiffstats
path: root/src/net/tcp/http.c
diff options
context:
space:
mode:
authorMichael Brown2007-07-08 03:10:54 +0200
committerMichael Brown2007-07-08 03:10:54 +0200
commitca4c6f9eee896ef70b676096131559dfd51970dc (patch)
tree5ee8d9d51cebf0ba9918aed78c6491e3d27849ac /src/net/tcp/http.c
parentRe-added symtab to CLEANUP list (diff)
downloadipxe-ca4c6f9eee896ef70b676096131559dfd51970dc.tar.gz
ipxe-ca4c6f9eee896ef70b676096131559dfd51970dc.tar.xz
ipxe-ca4c6f9eee896ef70b676096131559dfd51970dc.zip
Kill off unused request() method in data-xfer interface.
Diffstat (limited to 'src/net/tcp/http.c')
-rw-r--r--src/net/tcp/http.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/net/tcp/http.c b/src/net/tcp/http.c
index 4a979eae2..287a56a06 100644
--- a/src/net/tcp/http.c
+++ b/src/net/tcp/http.c
@@ -424,7 +424,6 @@ static void http_socket_close ( struct xfer_interface *socket, int rc ) {
static struct xfer_interface_operations http_socket_operations = {
.close = http_socket_close,
.vredirect = xfer_vopen,
- .request = ignore_xfer_request,
.seek = ignore_xfer_seek,
.alloc_iob = default_xfer_alloc_iob,
.deliver_iob = http_socket_deliver_iob,
@@ -451,7 +450,6 @@ static void http_xfer_close ( struct xfer_interface *xfer, int rc ) {
static struct xfer_interface_operations http_xfer_operations = {
.close = http_xfer_close,
.vredirect = ignore_xfer_vredirect,
- .request = ignore_xfer_request,
.seek = ignore_xfer_seek,
.alloc_iob = default_xfer_alloc_iob,
.deliver_iob = xfer_deliver_as_raw,