From c2bfab5a8c892c890c6fa374319c30f1a1728888 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sun, 4 May 2014 14:21:11 +0200 Subject: [PATCH] expose struct uclient_url Signed-off-by: Felix Fietkau --- uclient-backend.h | 11 ----------- uclient.h | 11 +++++++++++ 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/uclient-backend.h b/uclient-backend.h index fb1a788..4cba048 100644 --- a/uclient-backend.h +++ b/uclient-backend.h @@ -34,17 +34,6 @@ struct uclient_backend { 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; -}; - 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); diff --git a/uclient.h b/uclient.h index 95b6d57..fcd7769 100644 --- a/uclient.h +++ b/uclient.h @@ -41,6 +41,17 @@ union uclient_addr { struct sockaddr_in6 sin6; }; +struct uclient_url { + const struct uclient_backend *backend; + int prefix; + + const char *host; + const char *port; + const char *location; + + const char *auth; +}; + struct uclient { const struct uclient_backend *backend; const struct uclient_cb *cb; -- 2.11.0