summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-rw-r--r--src/include/ipxe/http.h4
-rw-r--r--src/include/ipxe/tls.h3
2 files changed, 2 insertions, 5 deletions
diff --git a/src/include/ipxe/http.h b/src/include/ipxe/http.h
index 0893c9537..117f174af 100644
--- a/src/include/ipxe/http.h
+++ b/src/include/ipxe/http.h
@@ -45,11 +45,9 @@ struct http_scheme {
*
* @v xfer Data transfer interface
* @v name Host name
- * @v next Next interface
* @ret rc Return status code
*/
- int ( * filter ) ( struct interface *xfer, const char *name,
- struct interface **next );
+ int ( * filter ) ( struct interface *xfer, const char *name );
};
/** HTTP scheme table */
diff --git a/src/include/ipxe/tls.h b/src/include/ipxe/tls.h
index febbdc589..2eaaadf20 100644
--- a/src/include/ipxe/tls.h
+++ b/src/include/ipxe/tls.h
@@ -378,7 +378,6 @@ struct tls_connection {
/** RX I/O buffer alignment */
#define TLS_RX_ALIGN 16
-extern int add_tls ( struct interface *xfer, const char *name,
- struct interface **next );
+extern int add_tls ( struct interface *xfer, const char *name );
#endif /* _IPXE_TLS_H */