uclient-backend.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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_url)(struct uclient *cl);
  26. int (*connect)(struct uclient *cl);
  27. int (*request)(struct uclient *cl);
  28. void (*disconnect)(struct uclient *cl);
  29. int (*read)(struct uclient *cl, char *buf, unsigned int len);
  30. int (*write)(struct uclient *cl, const char *buf, unsigned int len);
  31. };
  32. void uclient_backend_set_error(struct uclient *cl, int code);
  33. void uclient_backend_set_eof(struct uclient *cl);
  34. void uclient_backend_reset_state(struct uclient *cl);
  35. struct uclient_url *uclient_get_url(const char *url_str, const char *auth_str);
  36. #endif