00001 #ifndef _GPXE_HTTP_H 00002 #define _GPXE_HTTP_H 00003 00004 /** @file 00005 * 00006 * Hyper Text Transport Protocol 00007 * 00008 */ 00009 00010 FILE_LICENCE ( GPL2_OR_LATER ); 00011 00012 /** HTTP default port */ 00013 #define HTTP_PORT 80 00014 00015 /** HTTPS default port */ 00016 #define HTTPS_PORT 443 00017 00018 extern int http_open_filter ( struct xfer_interface *xfer, struct uri *uri, 00019 unsigned int default_port, 00020 int ( * filter ) ( struct xfer_interface *, 00021 struct xfer_interface ** ) ); 00022 00023 #endif /* _GPXE_HTTP_H */
1.5.7.1