X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fuclient.git;a=blobdiff_plain;f=uclient-backend.h;h=c2b9fd538189e2c4a96240bb7bae159031abd3eb;hp=fb1a788e205e3405f8e49c466fc4a042f1a01772;hb=f2573da7f508a916177af41efc56233a4985c498;hpb=299b1af9c051248771537980ee2d16c29c61376d diff --git a/uclient-backend.h b/uclient-backend.h index fb1a788..c2b9fd5 100644 --- a/uclient-backend.h +++ b/uclient-backend.h @@ -25,29 +25,21 @@ struct uclient_backend { struct uclient *(*alloc)(void); void (*free)(struct uclient *cl); + void (*update_proxy_url)(struct uclient *cl); void (*update_url)(struct uclient *cl); int (*connect)(struct uclient *cl); int (*request)(struct uclient *cl); + void (*disconnect)(struct uclient *cl); int (*read)(struct uclient *cl, char *buf, unsigned int len); - int (*write)(struct uclient *cl, char *buf, unsigned int len); -}; - -struct uclient_url { - const struct uclient_backend *backend; - int prefix; - - const char *host; - const char *port; - const char *location; - - const char *auth; + int (*write)(struct uclient *cl, const char *buf, unsigned int len); }; void uclient_backend_set_error(struct uclient *cl, int code); void uclient_backend_set_eof(struct uclient *cl); void uclient_backend_reset_state(struct uclient *cl); struct uclient_url *uclient_get_url(const char *url_str, const char *auth_str); +struct uclient_url *uclient_get_url_location(struct uclient_url *url, const char *location); #endif