http_client.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. *
  6. * License: GPL (version 3 or any later version).
  7. * See LICENSE for details.
  8. * --- END COPYRIGHT BLOCK --- */
  9. #ifdef HAVE_CONFIG_H
  10. #include <config.h>
  11. #endif
  12. #ifndef _HTTP_CLIENT_H_
  13. #define _HTTP_CLIENT_H_
  14. /* Error codes */
  15. #define HTTP_CLIENT_ERROR_BAD_URL -1
  16. #define HTTP_CLIENT_ERROR_NET_ADDR -2
  17. #define HTTP_CLIENT_ERROR_SOCKET_CREATE -3
  18. #define HTTP_CLIENT_ERROR_CONNECT_FAILED -4
  19. #define HTTP_CLIENT_ERROR_SEND_REQ -5
  20. #define HTTP_CLIENT_ERROR_BAD_RESPONSE -6
  21. #define HTTP_CLIENT_ERROR_SSLSOCKET_CREATE -7
  22. #define HTTP_CLIENT_ERROR_NSS_INITIALIZE -8
  23. /*Structure to store HTTP Headers */
  24. typedef struct
  25. {
  26. char *name;
  27. char *value;
  28. } httpheader;
  29. /* mechanics */
  30. typedef void (*api_http_init)(Slapi_ComponentId *plugin_id);
  31. typedef int (*api_http_get_text)(char *url, char **data, int *bytesRead);
  32. typedef int (*api_http_get_binary)(char *url, char **data, int *bytesRead);
  33. typedef int (*api_http_get_redirected_uri)(char *url, char **data, int *bytesRead);
  34. typedef void (*api_http_shutdown)(void);
  35. typedef int (*api_http_post)(char *url, httpheader **httpheaderArray, char *body, char **data, int *bytesRead);
  36. /* API ID for http_apib_get_interface */
  37. #define HTTP_v1_0_GUID "811c5ea2-fef4-4f1c-9ab4-fcf746cd6efc"
  38. /* API */
  39. /* the api broker reserves api[0] for its use */
  40. #define http_init(api) \
  41. ((api_http_init *)(api))[1](Slapi_ComponentId * plugin_id)
  42. #define http_get_text(api, url, data, bytesRead) \
  43. ((api_http_get_text *)(api))[2](url, data, bytesRead)
  44. #define http_get_binary(api, url, data, bytesRead) \
  45. ((api_http_get_binary *)(api))[3](url, data, bytesRead)
  46. #define http_get_redirected_uri(api, url, data, bytesRead) \
  47. ((api_http_get_redirected_uri *)(api))[4](url, data, bytesRead)
  48. #define http_shutdown(api) \
  49. ((api_http_shutdown *)(api))[5]()
  50. #define http_post(api, url, httpheaderArray, body, data, bytesRead) \
  51. ((api_http_post *)(api))[6](url, httpheaderArray, body, data, bytesRead)
  52. #endif /*_HTTP_CLIENT_H_*/