Add qemu 2.4.0
[kvmfornfv.git] / qemu / roms / ipxe / src / include / ipxe / http.h
1 #ifndef _IPXE_HTTP_H
2 #define _IPXE_HTTP_H
3
4 /** @file
5  *
6  * Hyper Text Transport Protocol
7  *
8  */
9
10 FILE_LICENCE ( GPL2_OR_LATER );
11
12 /** HTTP default port */
13 #define HTTP_PORT 80
14
15 /** HTTPS default port */
16 #define HTTPS_PORT 443
17
18 extern int http_open_filter ( struct interface *xfer, struct uri *uri,
19                               unsigned int default_port,
20                               int ( * filter ) ( struct interface *,
21                                                  const char *,
22                                                  struct interface ** ) );
23
24 #endif /* _IPXE_HTTP_H */