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

12345678910111213141516
  1. #ifndef _GPXE_HTTP_H
  2. #define _GPXE_HTTP_H
  3. /** @file
  4. *
  5. * Hyper Text Transport Protocol
  6. *
  7. */
  8. /** HTTP default port */
  9. #define HTTP_PORT 80
  10. /** HTTPS default port */
  11. #define HTTPS_PORT 443
  12. #endif /* _GPXE_HTTP_H */