summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorMichael Brown2007-06-09 18:42:46 +0200
committerMichael Brown2007-06-09 18:42:46 +0200
commit7c8cc3ef6cfdacdb6dcf1f556070069f8446e64b (patch)
tree9014b799af187b81962f20efd4d9d8914f385971 /src/include
parentAdd reference counting to register/unregister procedure. (diff)
downloadipxe-7c8cc3ef6cfdacdb6dcf1f556070069f8446e64b.tar.gz
ipxe-7c8cc3ef6cfdacdb6dcf1f556070069f8446e64b.tar.xz
ipxe-7c8cc3ef6cfdacdb6dcf1f556070069f8446e64b.zip
Use standard xfer_open() argument list for downloader instantiator
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gpxe/downloader.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/gpxe/downloader.h b/src/include/gpxe/downloader.h
index 956bbce0a..33aa76921 100644
--- a/src/include/gpxe/downloader.h
+++ b/src/include/gpxe/downloader.h
@@ -10,8 +10,8 @@
struct job_interface;
struct image;
-extern int create_downloader ( struct job_interface *job,
- const char *uri_string, struct image *image,
- int ( * register_image ) ( struct image * ) );
+extern int create_downloader ( struct job_interface *job, struct image *image,
+ int ( * register_image ) ( struct image *image ),
+ int type, ... );
#endif /* _GPXE_DOWNLOADER_H */