blob: de4cae280cc7450a86c01f92eb22aa40fcd57dd3 [file] [log] [blame]
Igor Sysoev42feecb2002-12-15 06:25:09 +00001
Igor Sysoevd90282d2004-09-28 08:34:51 +00002/*
Igor Sysoevff8da912004-09-29 16:00:49 +00003 * Copyright (C) Igor Sysoev
Igor Sysoevd90282d2004-09-28 08:34:51 +00004 */
5
6
Igor Sysoev42feecb2002-12-15 06:25:09 +00007#include <ngx_config.h>
Igor Sysoev1c104622003-06-03 15:42:58 +00008#include <ngx_core.h>
Igor Sysoev42feecb2002-12-15 06:25:09 +00009
10
Igor Sysoev1b735832004-11-11 14:07:14 +000011/*
12 * ngx_sock_ntop() and ngx_inet_ntop() may be implemented as
Igor Sysoevc31a9bb2005-11-26 10:11:11 +000013 * "ngx_sprintf(text, "%ud.%ud.%ud.%ud", p[0], p[1], p[2], p[3])", however,
14 * they had been implemented long before the ngx_sprintf() had appeared
Igor Sysoev1b735832004-11-11 14:07:14 +000015 * and they are faster by 1.5-2.5 times, so it is worth to keep them.
16 *
17 * By the way, the implementation using ngx_sprintf() is faster by 2.5-3 times
Igor Sysoev02025fd2005-01-18 13:03:58 +000018 * than using FreeBSD libc's snprintf().
Igor Sysoev1b735832004-11-11 14:07:14 +000019 */
20
21
Igor Sysoev94e32ce2006-04-07 14:08:04 +000022static ngx_inline size_t
23ngx_sprint_uchar(u_char *text, u_char c, size_t len)
Igor Sysoev9c610952004-03-16 13:35:20 +000024{
25 size_t n;
26 ngx_uint_t c1, c2;
27
28 n = 0;
29
30 if (len == n) {
31 return n;
32 }
33
34 c1 = c / 100;
35
36 if (c1) {
37 *text++ = (u_char) (c1 + '0');
38 n++;
39
40 if (len == n) {
41 return n;
42 }
43 }
44
45 c2 = (c % 100) / 10;
46
47 if (c1 || c2) {
48 *text++ = (u_char) (c2 + '0');
49 n++;
50
51 if (len == n) {
52 return n;
53 }
54 }
55
56 c2 = c % 10;
57
58 *text++ = (u_char) (c2 + '0');
59 n++;
60
61 return n;
62}
63
64
Igor Sysoev86de4cb2003-01-30 07:28:09 +000065/* AF_INET only */
66
Igor Sysoev899b44e2005-05-12 14:58:06 +000067size_t
68ngx_sock_ntop(int family, struct sockaddr *sa, u_char *text, size_t len)
Igor Sysoev86de4cb2003-01-30 07:28:09 +000069{
Igor Sysoev10a543a2004-03-16 07:10:12 +000070 u_char *p;
Igor Sysoev9c610952004-03-16 13:35:20 +000071 size_t n;
72 ngx_uint_t i;
Igor Sysoev02025fd2005-01-18 13:03:58 +000073 struct sockaddr_in *sin;
Igor Sysoev86de4cb2003-01-30 07:28:09 +000074
Igor Sysoev9c610952004-03-16 13:35:20 +000075 if (len == 0) {
76 return 0;
77 }
78
Igor Sysoev86de4cb2003-01-30 07:28:09 +000079 if (family != AF_INET) {
80 return 0;
81 }
82
Igor Sysoev02025fd2005-01-18 13:03:58 +000083 sin = (struct sockaddr_in *) sa;
84 p = (u_char *) &sin->sin_addr;
Igor Sysoev86de4cb2003-01-30 07:28:09 +000085
Igor Sysoev9c610952004-03-16 13:35:20 +000086 if (len > INET_ADDRSTRLEN) {
87 len = INET_ADDRSTRLEN;
88 }
89
90 n = ngx_sprint_uchar(text, p[0], len);
91
92 i = 1;
93
94 do {
95 if (len == n) {
96 text[n - 1] = '\0';
97 return n;
98 }
99
100 text[n++] = '.';
101
102 if (len == n) {
103 text[n - 1] = '\0';
104 return n;
105 }
106
107 n += ngx_sprint_uchar(&text[n], p[i++], len - n);
108
109 } while (i < 4);
110
111 if (len == n) {
112 text[n] = '\0';
113 return n;
114 }
115
116 text[n] = '\0';
117
118 return n;
Igor Sysoev86de4cb2003-01-30 07:28:09 +0000119}
120
Igor Sysoev899b44e2005-05-12 14:58:06 +0000121size_t
122ngx_inet_ntop(int family, void *addr, u_char *text, size_t len)
Igor Sysoev42feecb2002-12-15 06:25:09 +0000123{
Igor Sysoev9c610952004-03-16 13:35:20 +0000124 u_char *p;
125 size_t n;
126 ngx_uint_t i;
127
128 if (len == 0) {
129 return 0;
130 }
131
Igor Sysoev86de4cb2003-01-30 07:28:09 +0000132 if (family != AF_INET) {
Igor Sysoev42feecb2002-12-15 06:25:09 +0000133 return 0;
Igor Sysoev86de4cb2003-01-30 07:28:09 +0000134 }
Igor Sysoev42feecb2002-12-15 06:25:09 +0000135
Igor Sysoev9c610952004-03-16 13:35:20 +0000136 p = (u_char *) addr;
137
138 if (len > INET_ADDRSTRLEN) {
139 len = INET_ADDRSTRLEN;
140 }
141
142 n = ngx_sprint_uchar(text, p[0], len);
143
144 i = 1;
145
146 do {
147 if (len == n) {
148 text[n - 1] = '\0';
149 return n;
150 }
151
152 text[n++] = '.';
153
154 if (len == n) {
155 text[n - 1] = '\0';
156 return n;
157 }
158
159 n += ngx_sprint_uchar(&text[n], p[i++], len - n);
160
161 } while (i < 4);
162
163 if (len == n) {
164 text[n] = '\0';
165 return n;
166 }
167
168 text[n] = '\0';
169
170 return n;
Igor Sysoev42feecb2002-12-15 06:25:09 +0000171}
Igor Sysoev822834e2004-05-25 15:28:46 +0000172
173
174/* AF_INET only */
175
Igor Sysoev899b44e2005-05-12 14:58:06 +0000176ngx_int_t
177ngx_ptocidr(ngx_str_t *text, void *cidr)
Igor Sysoev822834e2004-05-25 15:28:46 +0000178{
Igor Sysoev59f3aa32004-06-24 16:07:04 +0000179 ngx_int_t m;
Igor Sysoev822834e2004-05-25 15:28:46 +0000180 ngx_uint_t i;
181 ngx_inet_cidr_t *in_cidr;
182
183 in_cidr = cidr;
184
185 for (i = 0; i < text->len; i++) {
186 if (text->data[i] == '/') {
187 break;
188 }
189 }
190
191 if (i == text->len) {
192 return NGX_ERROR;
193 }
194
195 text->data[i] = '\0';
196 in_cidr->addr = inet_addr((char *) text->data);
197 text->data[i] = '/';
198 if (in_cidr->addr == INADDR_NONE) {
199 return NGX_ERROR;
200 }
201
Igor Sysoev59f3aa32004-06-24 16:07:04 +0000202 m = ngx_atoi(&text->data[i + 1], text->len - (i + 1));
203 if (m == NGX_ERROR) {
Igor Sysoev822834e2004-05-25 15:28:46 +0000204 return NGX_ERROR;
205 }
206
Igor Sysoev59f3aa32004-06-24 16:07:04 +0000207 if (m == 0) {
208
209 /* the x86 compilers use the shl instruction that shifts by modulo 32 */
210
211 in_cidr->mask = 0;
212 return NGX_OK;
213 }
214
Igor Sysoev6deb0412004-07-30 17:05:14 +0000215 in_cidr->mask = htonl((ngx_uint_t) (0 - (1 << (32 - m))));
Igor Sysoev59f3aa32004-06-24 16:07:04 +0000216
Igor Sysoev822834e2004-05-25 15:28:46 +0000217 return NGX_OK;
218}
Igor Sysoeve2ff3ea2004-09-14 15:55:24 +0000219
220
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000221ngx_int_t
222ngx_parse_url(ngx_conf_t *cf, ngx_url_t *u)
223{
Igor Sysoevbf3aaac2006-12-12 16:46:16 +0000224 u_char *p, *host, *port_start;
225 size_t len, port_len;
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000226 ngx_int_t port;
227 ngx_uint_t i;
Igor Sysoev20bf47b2006-10-24 13:06:55 +0000228 struct hostent *h;
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000229#if (NGX_HAVE_UNIX_DOMAIN)
230 struct sockaddr_un *saun;
231#endif
232
233 len = u->url.len;
234 p = u->url.data;
235
Igor Sysoev722231f2007-02-14 18:51:19 +0000236 if (ngx_strncasecmp(p, (u_char *) "unix:", 5) == 0) {
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000237
238#if (NGX_HAVE_UNIX_DOMAIN)
239
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000240 p += 5;
241 len -= 5;
242
Igor Sysoev7c20ed82006-09-24 14:45:37 +0000243 u->uri.len = len;
244 u->uri.data = p;
245
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000246 if (u->uri_part) {
247 for (i = 0; i < len; i++) {
248
249 if (p[i] == ':') {
250 len = i;
251
252 u->uri.len -= len + 1;
253 u->uri.data += len + 1;
254
255 break;
256 }
257 }
258 }
259
260 if (len == 0) {
261 u->err = "no path in the unix domain socket";
262 return NGX_ERROR;
263 }
264
265 if (len + 1 > sizeof(saun->sun_path)) {
266 u->err = "too long path in the unix domain socket";
267 return NGX_ERROR;
268 }
269
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000270 u->addrs = ngx_pcalloc(cf->pool, sizeof(ngx_peer_addr_t));
271 if (u->addrs == NULL) {
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000272 return NGX_ERROR;
273 }
274
275 saun = ngx_pcalloc(cf->pool, sizeof(struct sockaddr_un));
276 if (saun == NULL) {
277 return NGX_ERROR;
278 }
279
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000280 u->naddrs = 1;
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000281
282 saun->sun_family = AF_UNIX;
283 (void) ngx_cpystrn((u_char *) saun->sun_path, p, len + 1);
284
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000285 u->addrs[0].sockaddr = (struct sockaddr *) saun;
286 u->addrs[0].socklen = sizeof(struct sockaddr_un);
287 u->addrs[0].name.len = len + 5;
288 u->addrs[0].name.data = u->url.data;
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000289
Igor Sysoevadf9c7f2006-12-06 15:39:08 +0000290 u->host.len = len;
291 u->host.data = p;
292
Igor Sysoevbf3aaac2006-12-12 16:46:16 +0000293 u->unix_socket = 1;
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000294
295 return NGX_OK;
296
297#else
298 u->err = "the unix domain sockets are not supported on this platform";
299
300 return NGX_ERROR;
301
302#endif
303 }
304
305 if ((p[0] == ':' || p[0] == '/') && !u->listen) {
306 u->err = "invalid host";
307 return NGX_ERROR;
308 }
309
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000310 u->host.data = p;
Igor Sysoevbf3aaac2006-12-12 16:46:16 +0000311
312 port_start = NULL;
313 port_len = 0;
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000314
315 for (i = 0; i < len; i++) {
316
317 if (p[i] == ':') {
Igor Sysoevbf3aaac2006-12-12 16:46:16 +0000318 port_start = &p[i + 1];
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000319 u->host.len = i;
320
321 if (!u->uri_part) {
Igor Sysoevbf3aaac2006-12-12 16:46:16 +0000322 port_len = len - (i + 1);
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000323 break;
324 }
325 }
326
327 if (p[i] == '/') {
328 u->uri.len = len - i;
329 u->uri.data = &p[i];
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000330
331 if (u->host.len == 0) {
332 u->host.len = i;
333 }
334
Igor Sysoevbf3aaac2006-12-12 16:46:16 +0000335 if (port_start == NULL) {
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000336 u->no_port = 1;
337 goto no_port;
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000338 }
339
Igor Sysoevbf3aaac2006-12-12 16:46:16 +0000340 port_len = &p[i] - port_start;
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000341
Igor Sysoevbf3aaac2006-12-12 16:46:16 +0000342 if (port_len == 0) {
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000343 u->err = "invalid port";
344 return NGX_ERROR;
345 }
346
347 break;
348 }
349 }
350
Igor Sysoevbf3aaac2006-12-12 16:46:16 +0000351 if (port_start) {
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000352
Igor Sysoevbf3aaac2006-12-12 16:46:16 +0000353 if (port_len == 0) {
354 port_len = &p[i] - port_start;
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000355
Igor Sysoevbf3aaac2006-12-12 16:46:16 +0000356 if (port_len == 0) {
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000357 u->err = "invalid port";
358 return NGX_ERROR;
359 }
360 }
361
Igor Sysoevbf3aaac2006-12-12 16:46:16 +0000362 port = ngx_atoi(port_start, port_len);
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000363
364 if (port == NGX_ERROR || port < 1 || port > 65536) {
365 u->err = "invalid port";
366 return NGX_ERROR;
367 }
368
369 } else {
370 port = ngx_atoi(p, len);
371
372 if (port == NGX_ERROR) {
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000373 u->host.len = len;
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000374 u->no_port = 1;
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000375
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000376 goto no_port;
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000377 }
378
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000379 u->wildcard = 1;
380 }
381
Igor Sysoevbf3aaac2006-12-12 16:46:16 +0000382 u->port = (in_port_t) port;
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000383
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000384no_port:
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000385
386 if (u->listen) {
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000387
Igor Sysoevbf3aaac2006-12-12 16:46:16 +0000388 if (u->port == 0) {
389 if (u->default_port == 0) {
Igor Sysoev20bf47b2006-10-24 13:06:55 +0000390 u->err = "no port";
391 return NGX_ERROR;
392 }
393
Igor Sysoevbf3aaac2006-12-12 16:46:16 +0000394 u->port = u->default_port;
Igor Sysoev20bf47b2006-10-24 13:06:55 +0000395 }
396
397 if (u->host.len == 1 && u->host.data[0] == '*') {
398 u->host.len = 0;
399 }
400
401 /* AF_INET only */
402
403 if (u->host.len) {
404
405 host = ngx_palloc(cf->temp_pool, u->host.len + 1);
406 if (host == NULL) {
407 return NGX_ERROR;
408 }
409
410 (void) ngx_cpystrn(host, u->host.data, u->host.len + 1);
411
412 u->addr.in_addr = inet_addr((const char *) host);
413
414 if (u->addr.in_addr == INADDR_NONE) {
415 h = gethostbyname((const char *) host);
416
417 if (h == NULL || h->h_addr_list[0] == NULL) {
418 u->err = "host not found";
419 return NGX_ERROR;
420 }
421
Igor Sysoevbf3aaac2006-12-12 16:46:16 +0000422 u->addr.in_addr = *(in_addr_t *) (h->h_addr_list[0]);
Igor Sysoev20bf47b2006-10-24 13:06:55 +0000423 }
424
425 } else {
426 u->addr.in_addr = INADDR_ANY;
427 }
428
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000429 return NGX_OK;
430 }
431
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000432 if (u->host.len == 0) {
433 u->err = "no host";
434 return NGX_ERROR;
435 }
436
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000437 if (u->no_resolve) {
438 return NGX_OK;
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000439 }
440
Igor Sysoevbf3aaac2006-12-12 16:46:16 +0000441 if (u->no_port) {
442 u->port = u->default_port;
443 }
444
445 if (u->port == 0) {
446 u->err = "no port";
447 return NGX_ERROR;
448 }
449
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000450 if (ngx_inet_resolve_host(cf, u) != NGX_OK) {
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000451 return NGX_ERROR;
452 }
453
454 return NGX_OK;
455}
456
457
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000458ngx_int_t
459ngx_inet_resolve_host(ngx_conf_t *cf, ngx_url_t *u)
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000460{
Igor Sysoevbf3aaac2006-12-12 16:46:16 +0000461 u_char *p, *host;
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000462 size_t len;
463 in_addr_t in_addr;
464 ngx_uint_t i;
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000465 struct hostent *h;
466 struct sockaddr_in *sin;
467
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000468 host = ngx_palloc(cf->temp_pool, u->host.len + 1);
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000469 if (host == NULL) {
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000470 return NGX_ERROR;
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000471 }
472
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000473 (void) ngx_cpystrn(host, u->host.data, u->host.len + 1);
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000474
475 /* AF_INET only */
476
477 in_addr = inet_addr((char *) host);
478
479 if (in_addr == INADDR_NONE) {
480 h = gethostbyname((char *) host);
481
482 if (h == NULL || h->h_addr_list[0] == NULL) {
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000483 u->err = "host not found";
484 return NGX_ERROR;
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000485 }
486
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000487 if (u->one_addr == 0) {
488 for (i = 0; h->h_addr_list[i] != NULL; i++) { /* void */ }
489
490 } else {
491 i = 1;
492 }
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000493
494 /* MP: ngx_shared_palloc() */
495
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000496 u->addrs = ngx_pcalloc(cf->pool, i * sizeof(ngx_peer_addr_t));
497 if (u->addrs == NULL) {
498 return NGX_ERROR;
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000499 }
500
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000501 u->naddrs = i;
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000502
503 for (i = 0; h->h_addr_list[i] != NULL; i++) {
504
505 sin = ngx_pcalloc(cf->pool, sizeof(struct sockaddr_in));
506 if (sin == NULL) {
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000507 return NGX_ERROR;
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000508 }
509
510 sin->sin_family = AF_INET;
Igor Sysoevbf3aaac2006-12-12 16:46:16 +0000511 sin->sin_port = htons(u->port);
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000512 sin->sin_addr.s_addr = *(in_addr_t *) (h->h_addr_list[i]);
513
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000514 u->addrs[i].sockaddr = (struct sockaddr *) sin;
515 u->addrs[i].socklen = sizeof(struct sockaddr_in);
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000516
517 len = INET_ADDRSTRLEN - 1 + 1 + sizeof(":65536") - 1;
518
Igor Sysoevbf3aaac2006-12-12 16:46:16 +0000519 p = ngx_palloc(cf->pool, len);
520 if (p == NULL) {
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000521 return NGX_ERROR;
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000522 }
523
Igor Sysoevbf3aaac2006-12-12 16:46:16 +0000524 len = ngx_sock_ntop(AF_INET, (struct sockaddr *) sin, p, len);
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000525
Igor Sysoevbf3aaac2006-12-12 16:46:16 +0000526 u->addrs[i].name.len = ngx_sprintf(&p[len], ":%d", u->port) - p;
527 u->addrs[i].name.data = p;
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000528 }
529
530 } else {
531
532 /* MP: ngx_shared_palloc() */
533
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000534 u->addrs = ngx_pcalloc(cf->pool, sizeof(ngx_peer_addr_t));
535 if (u->addrs == NULL) {
536 return NGX_ERROR;
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000537 }
538
539 sin = ngx_pcalloc(cf->pool, sizeof(struct sockaddr_in));
540 if (sin == NULL) {
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000541 return NGX_ERROR;
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000542 }
543
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000544 u->naddrs = 1;
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000545
546 sin->sin_family = AF_INET;
Igor Sysoevbf3aaac2006-12-12 16:46:16 +0000547 sin->sin_port = htons(u->port);
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000548 sin->sin_addr.s_addr = in_addr;
549
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000550 u->addrs[0].sockaddr = (struct sockaddr *) sin;
551 u->addrs[0].socklen = sizeof(struct sockaddr_in);
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000552
Igor Sysoevbf3aaac2006-12-12 16:46:16 +0000553 p = ngx_palloc(cf->pool, u->host.len + sizeof(":65536") - 1);
554 if (p == NULL) {
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000555 return NGX_ERROR;
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000556 }
557
Igor Sysoevbf3aaac2006-12-12 16:46:16 +0000558 u->addrs[0].name.len = ngx_sprintf(p, "%V:%d", &u->host, u->port) - p;
559 u->addrs[0].name.data = p;
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000560 }
561
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000562 return NGX_OK;
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000563}