uclient-fetch: add user/password to command line help
[project/uclient.git] / uclient-backend.h
index fb1a788e205e3405f8e49c466fc4a042f1a01772..9ccc7999dbf7a0e3251db9d0a1be9ca90890f779 100644 (file)
@@ -29,20 +29,10 @@ struct uclient_backend {
 
        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);