You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

http.h 470B

123456789101112131415161718192021222324
  1. #ifndef _IPXE_HTTP_H
  2. #define _IPXE_HTTP_H
  3. /** @file
  4. *
  5. * Hyper Text Transport Protocol
  6. *
  7. */
  8. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  9. /** HTTP default port */
  10. #define HTTP_PORT 80
  11. /** HTTPS default port */
  12. #define HTTPS_PORT 443
  13. extern int http_open_filter ( struct interface *xfer, struct uri *uri,
  14. unsigned int default_port,
  15. int ( * filter ) ( struct interface *,
  16. const char *,
  17. struct interface ** ) );
  18. #endif /* _IPXE_HTTP_H */