diff options
Diffstat (limited to 'src/include/ipxe/http.h')
| -rw-r--r-- | src/include/ipxe/http.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/include/ipxe/http.h b/src/include/ipxe/http.h new file mode 100644 index 000000000..97014d1f4 --- /dev/null +++ b/src/include/ipxe/http.h @@ -0,0 +1,23 @@ +#ifndef _IPXE_HTTP_H +#define _IPXE_HTTP_H + +/** @file + * + * Hyper Text Transport Protocol + * + */ + +FILE_LICENCE ( GPL2_OR_LATER ); + +/** HTTP default port */ +#define HTTP_PORT 80 + +/** HTTPS default port */ +#define HTTPS_PORT 443 + +extern int http_open_filter ( struct xfer_interface *xfer, struct uri *uri, + unsigned int default_port, + int ( * filter ) ( struct xfer_interface *, + struct xfer_interface ** ) ); + +#endif /* _IPXE_HTTP_H */ |
