diff options
author | Michael Brown <mcb30@etherboot.org> | 2008-01-08 16:46:55 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2008-01-08 16:46:55 +0000 |
commit | f6a8158eed215954dafb7f622f6fd345b5b473d2 (patch) | |
tree | 74c855e3fb0a953ec463bfd4b5edb0248bd93ce8 /src/interface | |
parent | 74fd544101c8f17f35dfc2cd16738ebd5228d366 (diff) | |
download | ipxe-f6a8158eed215954dafb7f622f6fd345b5b473d2.tar.gz |
Make seek information part of the xfer metadata, rather than an entirely
separate xfer method.
Add missing .alloc_iob entries to several xfer_interface_operations
structures.
Diffstat (limited to 'src/interface')
-rw-r--r-- | src/interface/pxe/pxe_udp.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/interface/pxe/pxe_udp.c b/src/interface/pxe/pxe_udp.c index 745366f2..0d6d1b74 100644 --- a/src/interface/pxe/pxe_udp.c +++ b/src/interface/pxe/pxe_udp.c @@ -103,7 +103,6 @@ static int pxe_udp_deliver_iob ( struct xfer_interface *xfer, static struct xfer_interface_operations pxe_udp_xfer_operations = { .close = ignore_xfer_close, .vredirect = ignore_xfer_vredirect, - .seek = ignore_xfer_seek, .window = unlimited_xfer_window, .alloc_iob = default_xfer_alloc_iob, .deliver_iob = pxe_udp_deliver_iob, |