http_client.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. char *name;
  26. char *value;
  27. } httpheader;
  28. /* mechanics */
  29. typedef void (*api_http_init)(Slapi_ComponentId *plugin_id);
  30. typedef int (*api_http_get_text)(char *url, char **data, int *bytesRead);
  31. typedef int (*api_http_get_binary)(char *url, char **data, int *bytesRead);
  32. typedef int (*api_http_get_redirected_uri)(char *url, char **data, int *bytesRead);
  33. typedef void (*api_http_shutdown)();
  34. typedef int (*api_http_post)(char *url, httpheader **httpheaderArray, char *body, char **data, int *bytesRead);
  35. /* API ID for http_apib_get_interface */
  36. #define HTTP_v1_0_GUID "811c5ea2-fef4-4f1c-9ab4-fcf746cd6efc"
  37. /* API */
  38. /* the api broker reserves api[0] for its use */
  39. #define http_init(api) \
  40. ((api_http_init*)(api))[1](Slapi_ComponentId *plugin_id)
  41. #define http_get_text(api, url, data, bytesRead) \
  42. ((api_http_get_text*)(api))[2]( url, data, bytesRead)
  43. #define http_get_binary(api, url, data, bytesRead) \
  44. ((api_http_get_binary*)(api))[3](url, data, bytesRead)
  45. #define http_get_redirected_uri(api, url, data, bytesRead) \
  46. ((api_http_get_redirected_uri*)(api))[4](url, data, bytesRead)
  47. #define http_shutdown(api) \
  48. ((api_http_shutdown*)(api))[5]()
  49. #define http_post(api, url, httpheaderArray, body, data, bytesRead) \
  50. ((api_http_post*)(api))[6](url, httpheaderArray, body, data, bytesRead)
  51. #endif /*_HTTP_CLIENT_H_*/