uclient.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /*
  2. * uclient - ustream based protocol client library
  3. *
  4. * Copyright (C) 2014 Felix Fietkau <nbd@openwrt.org>
  5. *
  6. * Permission to use, copy, modify, and/or distribute this software for any
  7. * purpose with or without fee is hereby granted, provided that the above
  8. * copyright notice and this permission notice appear in all copies.
  9. *
  10. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  11. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  12. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  13. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  14. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  15. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  16. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. #ifndef __LIBUBOX_UCLIENT_H
  19. #define __LIBUBOX_UCLIENT_H
  20. #include <libubox/blob.h>
  21. #include <libubox/ustream.h>
  22. #include <libubox/ustream-ssl.h>
  23. struct uclient_cb;
  24. struct uclient_backend;
  25. enum uclient_error_code {
  26. UCLIENT_ERROR_UNKNOWN,
  27. UCLIENT_ERROR_CONNECT,
  28. UCLIENT_ERROR_SSL_INVALID_CERT,
  29. UCLIENT_ERROR_SSL_CN_MISMATCH,
  30. };
  31. struct uclient {
  32. const struct uclient_backend *backend;
  33. const struct uclient_cb *cb;
  34. struct uclient_url *url;
  35. void *priv;
  36. bool eof;
  37. int error_code;
  38. int status_code;
  39. struct blob_attr *meta;
  40. struct uloop_timeout timeout;
  41. };
  42. struct uclient_cb {
  43. void (*data_read)(struct uclient *cl);
  44. void (*data_sent)(struct uclient *cl);
  45. void (*data_eof)(struct uclient *cl);
  46. void (*header_done)(struct uclient *cl);
  47. void (*error)(struct uclient *cl, int code);
  48. };
  49. struct uclient *uclient_new(const char *url, const char *auth_str, const struct uclient_cb *cb);
  50. void uclient_free(struct uclient *cl);
  51. int uclient_set_url(struct uclient *cl, const char *url_str);
  52. int uclient_connect(struct uclient *cl);
  53. int uclient_read(struct uclient *cl, char *buf, int len);
  54. int uclient_write(struct uclient *cl, char *buf, int len);
  55. int uclient_request(struct uclient *cl);
  56. /* HTTP */
  57. extern const struct uclient_backend uclient_backend_http;
  58. int uclient_http_set_header(struct uclient *cl, const char *name, const char *value);
  59. int uclient_http_reset_headers(struct uclient *cl, const char *name, const char *value);
  60. int uclient_http_set_request_type(struct uclient *cl, const char *type);
  61. bool uclient_http_redirect(struct uclient *cl);
  62. int uclient_http_set_ssl_ctx(struct uclient *cl, struct ustream_ssl_ctx *ctx, bool require_validation);
  63. #endif