您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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 */