From: Felix Fietkau Date: Wed, 30 Apr 2014 12:50:21 +0000 (+0200) Subject: http: get address at initial connect time X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fuclient.git;a=commitdiff_plain;h=63a984dbdf8a4d1249838e0708a4bed2dfaff476 http: get address at initial connect time Signed-off-by: Felix Fietkau --- diff --git a/uclient-http.c b/uclient-http.c index ee354c7..83eac58 100644 --- a/uclient-http.c +++ b/uclient-http.c @@ -101,6 +101,7 @@ static const char * const uclient_http_prefix[] = { static int uclient_do_connect(struct uclient_http *uh, const char *port) { + socklen_t sl; int fd; if (uh->uc.url->port) @@ -111,6 +112,14 @@ static int uclient_do_connect(struct uclient_http *uh, const char *port) return -1; ustream_fd_init(&uh->ufd, fd); + + memset(&uh->uc.local_addr, 0, sizeof(uh->uc.local_addr)); + memset(&uh->uc.remote_addr, 0, sizeof(uh->uc.remote_addr)); + + sl = sizeof(uh->uc.local_addr); + getsockname(fd, &uh->uc.local_addr.sa, &sl); + getpeername(fd, &uh->uc.remote_addr.sa, &sl); + return 0; } @@ -503,7 +512,6 @@ uclient_http_send_headers(struct uclient_http *uh) static void uclient_http_headers_complete(struct uclient_http *uh) { enum auth_type auth_type = uh->auth_type; - socklen_t sl; uh->state = HTTP_STATE_RECV_DATA; uh->uc.meta = uh->meta.head; @@ -516,13 +524,6 @@ static void uclient_http_headers_complete(struct uclient_http *uh) return; } - memset(&uh->uc.local_addr, 0, sizeof(uh->uc.local_addr)); - memset(&uh->uc.remote_addr, 0, sizeof(uh->uc.remote_addr)); - - sl = sizeof(uh->uc.local_addr); - getsockname(uh->ufd.fd.fd, &uh->uc.local_addr.sa, &sl); - getpeername(uh->ufd.fd.fd, &uh->uc.remote_addr.sa, &sl); - if (uh->uc.cb->header_done) uh->uc.cb->header_done(&uh->uc);