summaryrefslogtreecommitdiffstats
path: root/src/core/filter.c
diff options
context:
space:
mode:
authorMichael Brown2008-01-08 17:46:55 +0100
committerMichael Brown2008-01-08 17:46:55 +0100
commitf6a8158eed215954dafb7f622f6fd345b5b473d2 (patch)
tree74c855e3fb0a953ec463bfd4b5edb0248bd93ce8 /src/core/filter.c
parentAdded the embedded pxelinux payload patch from hpa. (diff)
downloadipxe-f6a8158eed215954dafb7f622f6fd345b5b473d2.tar.gz
ipxe-f6a8158eed215954dafb7f622f6fd345b5b473d2.tar.xz
ipxe-f6a8158eed215954dafb7f622f6fd345b5b473d2.zip
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/core/filter.c')
-rw-r--r--src/core/filter.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/core/filter.c b/src/core/filter.c
index 51ec5c4b..f9ebe7cf 100644
--- a/src/core/filter.c
+++ b/src/core/filter.c
@@ -44,12 +44,6 @@ int filter_vredirect ( struct xfer_interface *xfer, int type,
return xfer_vredirect ( other, type, args );
}
-int filter_seek ( struct xfer_interface *xfer, off_t offset, int whence ) {
- struct xfer_interface *other = filter_other_half ( xfer );
-
- return xfer_seek ( other, offset, whence );
-}
-
size_t filter_window ( struct xfer_interface *xfer ) {
struct xfer_interface *other = filter_other_half ( xfer );