[sundance] Add reset completion check
[gpxe.git] / src / include / gpxe / http.h
blobfa92a95057055552dab5195a78dce4699d3c2626
1 #ifndef _GPXE_HTTP_H
2 #define _GPXE_HTTP_H
4 /** @file
6 * Hyper Text Transport Protocol
8 */
10 /** HTTP default port */
11 #define HTTP_PORT 80
13 /** HTTPS default port */
14 #define HTTPS_PORT 443
16 extern int http_open_filter ( struct xfer_interface *xfer, struct uri *uri,
17 unsigned int default_port,
18 int ( * filter ) ( struct xfer_interface *,
19 struct xfer_interface ** ) );
21 #endif /* _GPXE_HTTP_H */