uclient-backend.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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 __UCLIENT_INTERNAL_H
  19. #define __UCLIENT_INTERNAL_H
  20. struct uclient_url;
  21. struct uclient_backend {
  22. const char * const * prefix;
  23. struct uclient *(*alloc)(void);
  24. void (*free)(struct uclient *cl);
  25. void (*update_proxy_url)(struct uclient *cl);
  26. void (*update_url)(struct uclient *cl);
  27. int (*connect)(struct uclient *cl);
  28. int (*request)(struct uclient *cl);
  29. void (*disconnect)(struct uclient *cl);
  30. int (*read)(struct uclient *cl, char *buf, unsigned int len);
  31. int (*write)(struct uclient *cl, const char *buf, unsigned int len);
  32. int (*pending_bytes)(struct uclient *cl, bool write);
  33. };
  34. void uclient_backend_set_error(struct uclient *cl, int code);
  35. void uclient_backend_set_eof(struct uclient *cl);
  36. void uclient_backend_reset_state(struct uclient *cl);
  37. struct uclient_url *uclient_get_url(const char *url_str, const char *auth_str);
  38. struct uclient_url *uclient_get_url_location(struct uclient_url *url, const char *location);
  39. static inline void uclient_backend_read_notify(struct uclient *cl)
  40. {
  41. uloop_timeout_set(&cl->read_notify, 1);
  42. }
  43. #endif