Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

http.h 423B

123456789101112131415161718192021
  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. extern int http_open_filter ( struct xfer_interface *xfer, struct uri *uri,
  13. unsigned int default_port,
  14. int ( * filter ) ( struct xfer_interface *,
  15. struct xfer_interface ** ) );
  16. #endif /* _GPXE_HTTP_H */