summaryrefslogtreecommitdiffstats
path: root/src/net/udp/tftp.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/udp/tftp.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/udp/tftp.c')
-rw-r--r--src/net/udp/tftp.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/net/udp/tftp.c b/src/net/udp/tftp.c
index 4bbeb0f8..03a51f9a 100644
--- a/src/net/udp/tftp.c
+++ b/src/net/udp/tftp.c
@@ -582,7 +582,6 @@ static void tftp_socket_close ( struct xfer_interface *socket, int rc ) {
static struct xfer_interface_operations tftp_socket_operations = {
.close = tftp_socket_close,
.vredirect = xfer_vopen,
- .request = ignore_xfer_request,
.seek = ignore_xfer_seek,
.alloc_iob = default_xfer_alloc_iob,
.deliver_iob = tftp_socket_deliver_iob,
@@ -609,7 +608,6 @@ static void tftp_xfer_close ( struct xfer_interface *xfer, int rc ) {
static struct xfer_interface_operations tftp_xfer_operations = {
.close = tftp_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,