aboutsummaryrefslogtreecommitdiffstats
path: root/src/interface
diff options
context:
space:
mode:
authorMichael Brown <mcb30@etherboot.org>2007-07-08 14:11:07 +0100
committerMichael Brown <mcb30@etherboot.org>2007-07-08 14:11:07 +0100
commitb34d4d044978714abe771ca8d7d07153ad048d82 (patch)
tree017d6c4e37f0bc49df6ae461074a41691e08013f /src/interface
parentca4c6f9eee896ef70b676096131559dfd51970dc (diff)
downloadipxe-b34d4d044978714abe771ca8d7d07153ad048d82.tar.gz
Separate the "is data ready" function of xfer_seek() into an
xfer_window() function, which can return a scalar rather than a boolean.
Diffstat (limited to 'src/interface')
-rw-r--r--src/interface/pxe/pxe_udp.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/interface/pxe/pxe_udp.c b/src/interface/pxe/pxe_udp.c
index 153d758cc..745366f24 100644
--- a/src/interface/pxe/pxe_udp.c
+++ b/src/interface/pxe/pxe_udp.c
@@ -104,6 +104,7 @@ 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,
.deliver_raw = xfer_deliver_as_iob,