<div dir="ltr">Hi Bart,<div><br></div><div>thank you for response.</div><div><br></div><div>I have referred the /root/Downloads/nginx-1.9.14/src/http/v2 module code.</div><div><br></div><div>Below is  that sample code.</div><div><div>static ngx_int_t</div><div>ngx_http_v2_parse_authority(ngx_http_request_t *r, ngx_http_v2_header_t *header)</div><div>{</div><div>    ngx_table_elt_t            *h;</div><div>    ngx_http_header_t          *hh;</div><div>    ngx_http_core_main_conf_t  *cmcf;</div><div><br></div><div>    static ngx_str_t host = ngx_string("host");</div><div><br></div><div>    h = ngx_list_push(&r->headers_in.headers); </div><div>    if (h == NULL) {</div><div>        return NGX_ERROR;</div><div>    }</div><div><br></div><div>    h->hash = ngx_hash_key(host.data, host.len);</div><div><br></div><div>    h->key.len = host.len;</div><div>    h->key.data = host.data;</div><div><br></div><div>    h->value.len = header->value.len;</div><div>    h->value.data = header->value.data;</div><div><br></div><div>    h->lowcase_key = host.data;</div><div><br></div><div>    cmcf = ngx_http_get_module_main_conf(r, ngx_http_core_module);</div><div><br></div><div>    hh = ngx_hash_find(&cmcf->headers_in_hash, h->hash,</div><div>                       h->lowcase_key, h->key.len); </div><div><br></div></div><div><br></div><div>Best Regards,</div><div>Pankaj</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Apr 26, 2016 at 6:23 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 Tuesday 26 April 2016 16:52:22 Pankaj Chaudhary wrote:<br>
> Hi Francis,<br>
><br>
> thank you for your input!<br>
><br>
> I have requirement to create own cookie  based on input  and wirte the that<br>
> cookie in header.<br>
> whenever i need that i can read from header and use it.<br>
><br>
><br>
> for example:-<br>
><br>
> I have created my own cookie "thissomevalue" worte in header and later the<br>
> same read from header.<br>
><br>
<br>
</span>You shouldn't do that (I believe even in Apache) because it's an expensive<br>
operation in comparison to just storing the value in local variable.<br>
<span class=""><br>
<br>
> Please check my code and let me know why i am not able to read the value<br>
> from header.<br>
<br>
</span>Because you write your value in one structure, but try to find it in another.<br>
<span class=""><br>
><br>
> Below code snippet to set header value in request header:-<br>
><br>
> ngx_table_elt_t *cookie;<br>
> cookie = ngx_list_push(&r->headers_in.headers);<br>
<br>
</span>Here you have inserted your value into header list (r->headers_in.headers).<br>
<span class=""><br>
<br>
> cookie->lowcase_key = (u_char*) "cookie";<br>
> ngx_str_set(&cookie->key, "Cookie");<br>
> ngx_str_set(&cookie->value, "somevalue");<br>
> cookie->hash = ngx_crc32_long(cookie->lowcase_key, cookie->key.len);<br>
><br>
><br>
> Below code snippet to read set value from header:-<br>
><br>
> ngx_http_core_main_conf_t   *clcf;<br>
> ngx_str_t                   *type;<br>
> ngx_uint_t                   key;<br>
> ngx_str_t    val = ngx_string("cookie");<br>
> clcf = ngx_http_get_module_main_conf(r, ngx_http_core_module);<br>
> key= ngx_hash_key_lc(val.data, val.len);<br>
> type = ngx_hash_find(&clcf->headers_in_hash, key,  val.data, val.len);<br>
><br>
<br>
</span>Here you are trying to find your value in the static input headers hash<br>
(clcf->headers_in_hash), that is created in ngx_http_init_headers_in_hash()<br>
on configuration stage.<br>
<br>
  wbr, Valentin V. Bartenev<br>
<div class="HOEnZb"><div class="h5"><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>