<div dir="ltr">Hi,<div>Thank you,</div><div>I got this point.</div><div>But in my case i need to set cookie value in header later read from header the same value.</div><div>Is any example which i can follow for my requirement, can you suggest please.</div><div><br></div><div>Regards,</div><div>Pankaj</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Apr 27, 2016 at 9:08 PM, Valentin V. Bartenev <span dir="ltr"><<a href="mailto:vbart@nginx.com" target="_blank">vbart@nginx.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On Wednesday 27 April 2016 13:26:47 Pankaj Chaudhary wrote:<br>
> Hi Bart,<br>
><br>
> thank you for response.<br>
><br>
> I have referred the /root/Downloads/nginx-1.9.14/src/http/v2 module code.<br>
><br>
> Below is  that sample code.<br>
> static ngx_int_t<br>
> ngx_http_v2_parse_authority(ngx_http_request_t *r, ngx_http_v2_header_t<br>
> *header)<br>
> {<br>
>     ngx_table_elt_t            *h;<br>
>     ngx_http_header_t          *hh;<br>
>     ngx_http_core_main_conf_t  *cmcf;<br>
><br>
>     static ngx_str_t host = ngx_string("host");<br>
><br>
>     h = ngx_list_push(&r->headers_in.headers);<br>
>     if (h == NULL) {<br>
>         return NGX_ERROR;<br>
>     }<br>
><br>
>     h->hash = ngx_hash_key(host.data, host.len);<br>
><br>
>     h->key.len = host.len;<br>
>     h->key.data = host.data;<br>
><br>
>     h->value.len = header->value.len;<br>
>     h->value.data = header->value.data;<br>
><br>
>     h->lowcase_key = host.data;<br>
><br>
>     cmcf = ngx_http_get_module_main_conf(r, ngx_http_core_module);<br>
><br>
>     hh = ngx_hash_find(&cmcf->headers_in_hash, h->hash,<br>
>                        h->lowcase_key, h->key.len);<br>
</span>[..]<br>
<br>
This code does what it supposed to do.  It adds a parsed "host" header<br>
to the input headers list, and then it tries to find and call appropriate<br>
handler (the ngx_http_process_host() function in this particular case).<br>
<div class="HOEnZb"><div class="h5"><br>
  wbr, Valentin V. Bartenev<br>
<br>
_______________________________________________<br>
nginx mailing list<br>
<a href="mailto:nginx@nginx.org">nginx@nginx.org</a><br>
<a href="http://mailman.nginx.org/mailman/listinfo/nginx" rel="noreferrer" target="_blank">http://mailman.nginx.org/mailman/listinfo/nginx</a><br>
</div></div></blockquote></div><br></div>