2
0
mirror of https://github.com/xcat2/xNBA.git synced 2026-01-12 01:52:30 +00:00
Files
xNBA/src/include/ipxe/http.h
Michael Brown b7f8d1bbfd [tls] Add support for Server Name Indication (SNI)
Signed-off-by: Michael Brown <mcb30@ipxe.org>
2012-03-03 20:15:21 +00:00

25 lines
462 B
C

#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 interface *xfer, struct uri *uri,
unsigned int default_port,
int ( * filter ) ( struct interface *,
const char *,
struct interface ** ) );
#endif /* _IPXE_HTTP_H */