comparison src/http/ngx_http_request.c @ 152:fb48bf4fea1c

nginx-0.0.1-2003-10-21-11:47:21 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 21 Oct 2003 07:47:21 +0000
parents 2d9e4a8b6d11
children c71aeb75c071
comparison
equal deleted inserted replaced
151:2d9e4a8b6d11 152:fb48bf4fea1c
581 } 581 }
582 582
583 if (ngx_strcasecmp(headers_in[i].name.data, h->key.data) == 0) { 583 if (ngx_strcasecmp(headers_in[i].name.data, h->key.data) == 0) {
584 *((ngx_table_elt_t **) 584 *((ngx_table_elt_t **)
585 ((char *) &r->headers_in + headers_in[i].offset)) = h; 585 ((char *) &r->headers_in + headers_in[i].offset)) = h;
586 break;
586 } 587 }
587 } 588 }
588 589
589 ngx_log_debug(r->connection->log, "HTTP header: '%s: %s'" _ 590 ngx_log_debug(r->connection->log, "HTTP header: '%s: %s'" _
590 h->key.data _ h->value.data); 591 h->key.data _ h->value.data);