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 456B

1234567891011121314151617181920212223
  1. #ifndef _GPXE_HTTP_H
  2. #define _GPXE_HTTP_H
  3. /** @file
  4. *
  5. * Hyper Text Transport Protocol
  6. *
  7. */
  8. FILE_LICENCE ( GPL2_OR_LATER );
  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 xfer_interface *xfer, struct uri *uri,
  14. unsigned int default_port,
  15. int ( * filter ) ( struct xfer_interface *,
  16. struct xfer_interface ** ) );
  17. #endif /* _GPXE_HTTP_H */