Files
ipxe/src/include/gpxe/http.h

22 lines
423 B
C
Raw Normal View History

2006-08-11 14:13:02 +00:00
#ifndef _GPXE_HTTP_H
#define _GPXE_HTTP_H
/** @file
*
* Hyper Text Transport Protocol
*
*/
/** HTTP default port */
#define HTTP_PORT 80
2007-01-31 03:44:38 +00:00
/** 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 ** ) );
2006-08-11 14:13:02 +00:00
#endif /* _GPXE_HTTP_H */