http_client.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /* --- BEGIN COPYRIGHT BLOCK ---
  2. * Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
  3. * Copyright (C) 2005 Red Hat, Inc.
  4. * All rights reserved.
  5. * --- END COPYRIGHT BLOCK --- */
  6. #ifndef _HTTP_CLIENT_H_
  7. #define _HTTP_CLIENT_H_
  8. /* Error codes */
  9. #define HTTP_CLIENT_ERROR_BAD_URL -1
  10. #define HTTP_CLIENT_ERROR_NET_ADDR -2
  11. #define HTTP_CLIENT_ERROR_SOCKET_CREATE -3
  12. #define HTTP_CLIENT_ERROR_CONNECT_FAILED -4
  13. #define HTTP_CLIENT_ERROR_SEND_REQ -5
  14. #define HTTP_CLIENT_ERROR_BAD_RESPONSE -6
  15. #define HTTP_CLIENT_ERROR_SSLSOCKET_CREATE -7
  16. #define HTTP_CLIENT_ERROR_NSS_INITIALIZE -8
  17. /*Structure to store HTTP Headers */
  18. typedef struct {
  19. char *name;
  20. char *value;
  21. } httpheader;
  22. /* mechanics */
  23. typedef void (*api_http_init)(Slapi_ComponentId *plugin_id);
  24. typedef int (*api_http_get_text)(char *url, char **data, int *bytesRead);
  25. typedef int (*api_http_get_binary)(char *url, char **data, int *bytesRead);
  26. typedef int (*api_http_get_redirected_uri)(char *url, char **data, int *bytesRead);
  27. typedef void (*api_http_shutdown)();
  28. typedef int (*api_http_post)(char *url, httpheader **httpheaderArray, char *body, char **data, int *bytesRead);
  29. /* API ID for http_apib_get_interface */
  30. #define HTTP_v1_0_GUID "811c5ea2-fef4-4f1c-9ab4-fcf746cd6efc"
  31. /* API */
  32. /* the api broker reserves api[0] for its use */
  33. #define http_init(api) \
  34. ((api_http_init*)(api))[1](Slapi_ComponentId *plugin_id)
  35. #define http_get_text(api, url, data, bytesRead) \
  36. ((api_http_get_text*)(api))[2]( url, data, bytesRead)
  37. #define http_get_binary(api, url, data, bytesRead) \
  38. ((api_http_get_binary*)(api))[3](url, data, bytesRead)
  39. #define http_get_redirected_uri(api, url, data, bytesRead) \
  40. ((api_http_get_redirected_uri*)(api))[4](url, data, bytesRead)
  41. #define http_shutdown(api) \
  42. ((api_http_shutdown*)(api))[5]()
  43. #define http_post(api, url, httpheaderArray, body, data, bytesRead) \
  44. ((api_http_post*)(api))[6](url, httpheaderArray, body, data, bytesRead)
  45. #endif /*_HTTP_CLIENT_H_*/