summaryrefslogtreecommitdiffstats
path: root/src/include/ipxe/http.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/ipxe/http.h')
-rw-r--r--src/include/ipxe/http.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/include/ipxe/http.h b/src/include/ipxe/http.h
index 0893c9537..5a9baddcb 100644
--- a/src/include/ipxe/http.h
+++ b/src/include/ipxe/http.h
@@ -21,6 +21,7 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
#include <ipxe/ntlm.h>
struct http_transaction;
+struct http_connection;
/******************************************************************************
*
@@ -43,13 +44,10 @@ struct http_scheme {
unsigned int port;
/** Transport-layer filter (if any)
*
- * @v xfer Data transfer interface
- * @v name Host name
- * @v next Next interface
+ * @v conn HTTP connection
* @ret rc Return status code
*/
- int ( * filter ) ( struct interface *xfer, const char *name,
- struct interface **next );
+ int ( * filter ) ( struct http_connection *conn );
};
/** HTTP scheme table */