uclient-fetch: fix short command line option for timeout
[project/uclient.git] / uclient.h
index 0c76f6e..282b9f3 100644 (file)
--- a/uclient.h
+++ b/uclient.h
@@ -61,6 +61,7 @@ struct uclient {
 
        union uclient_addr local_addr, remote_addr;
 
+       struct uclient_url *proxy_url;
        struct uclient_url *url;
        int timeout_msecs;
        void *priv;
@@ -69,6 +70,7 @@ struct uclient {
        bool data_eof;
        int error_code;
        int status_code;
+       int seq;
        struct blob_attr *meta;
 
        struct uloop_timeout connection_timeout;
@@ -87,6 +89,8 @@ struct uclient *uclient_new(const char *url, const char *auth_str, const struct
 void uclient_free(struct uclient *cl);
 
 int uclient_set_url(struct uclient *cl, const char *url, const char *auth);
+int uclient_set_proxy_url(struct uclient *cl, const char *url_str, const char *auth_str);
+
 
 /**
  * Sets connection timeout.