uclient-fetch: set server_name of the ssl context to support SNI
[project/uclient.git] / uclient-backend.h
index fb1a788..9ccc799 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);