nanohttp.h
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:1k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. /*
  2.  * nanohttp.c: minimalist HTTP implementation to fetch external subsets.
  3.  *
  4.  * See Copyright for the status of this software.
  5.  *
  6.  * Daniel.Veillard@w3.org
  7.  */
  8.  
  9. #ifndef __NANO_HTTP_H__
  10. #define __NANO_HTTP_H__
  11. #include <libxml/xmlversion.h>
  12. #ifdef LIBXML_HTTP_ENABLED
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. void xmlNanoHTTPInit (void);
  17. void xmlNanoHTTPCleanup (void);
  18. void xmlNanoHTTPScanProxy (const char *URL);
  19. int xmlNanoHTTPFetch (const char *URL,
  20.  const char *filename,
  21.  char **contentType);
  22. void * xmlNanoHTTPMethod (const char *URL,
  23.  const char *method,
  24.  const char *input,
  25.  char **contentType,
  26.  const char *headers);
  27. void * xmlNanoHTTPOpen (const char *URL,
  28.  char **contentType);
  29. int xmlNanoHTTPReturnCode (void *ctx);
  30. int xmlNanoHTTPRead (void *ctx,
  31.  void *dest,
  32.  int len);
  33. int xmlNanoHTTPSave (void *ctxt,
  34.  const char *filename);
  35. void xmlNanoHTTPClose (void *ctx);
  36. #ifdef __cplusplus
  37. }
  38. #endif /* LIBXML_HTTP_ENABLED */
  39. #endif
  40. #endif /* __NANO_HTTP_H__ */