diff options
| author | Michael Brown | 2007-07-08 15:11:07 +0200 |
|---|---|---|
| committer | Michael Brown | 2007-07-08 15:11:07 +0200 |
| commit | b34d4d044978714abe771ca8d7d07153ad048d82 (patch) | |
| tree | 017d6c4e37f0bc49df6ae461074a41691e08013f /src/interface/pxe/pxe_udp.c | |
| parent | Kill off unused request() method in data-xfer interface. (diff) | |
| download | ipxe-b34d4d044978714abe771ca8d7d07153ad048d82.tar.gz ipxe-b34d4d044978714abe771ca8d7d07153ad048d82.tar.xz ipxe-b34d4d044978714abe771ca8d7d07153ad048d82.zip | |
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/pxe/pxe_udp.c')
| -rw-r--r-- | src/interface/pxe/pxe_udp.c | 1 |
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, |
