<div dir="ltr"><div><br></div><div>Hi all,</div><div><br></div><div>i am trying to search for one header with the specified name</div><div><br></div><div>i am not able to get header value .</div><div><br></div><div>below my code snippet.</div><div><br></div><div><br></div><div>ngx_http_core_main_conf_t   *clcf;</div><div>ngx_str_t                         *type;</div><div>ngx_uint_t                   hash;</div><div>ngx_str_t    val = ngx_string("http_cookie");</div><div><br></div><div><br></div><div>clcf = ngx_http_get_module_main_conf(r, ngx_http_core_module);</div><div><br></div><div>hash = ngx_hash_key_lc(val.data, val.len);</div><div><br></div><div>type = ngx_hash_find(&clcf->headers_in_hash, hash,  val.data, val.len);</div><div><br></div><div>if (type != NULL) {</div><div><br></div><div><br></div><div>// type is not null but type->data value is null</div><div><br></div><div><br></div><div><br></div><div>}</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Apr 19, 2016 at 5:05 AM, Francis Daly <span dir="ltr"><<a href="mailto:francis@daoine.org" target="_blank">francis@daoine.org</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 Mon, Apr 18, 2016 at 04:25:24PM +0530, Pankaj Chaudhary wrote:<br>
<br>
Hi there,<br>
<br>
</span><span class="">> not able to read header value after setting...<br>
><br>
> any help most welcome<br>
<br>
</span>You have your nginx "hello world" module, yes?<br>
<br>
You can show your config and your "curl -i" request and response with<br>
your module's output, yes?<br>
<br>
Are you able to modify your module to read a particular request header<br>
and write the value to the response body?<br>
<br>
Are you able to modify your module to add a particular response header<br>
with a particular value?<br>
<br>
At what particular point does your implementation fail?<br>
<br>
If you can describe that, perhaps someone here will be able to offer<br>
some more direct help.<br>
<div class="HOEnZb"><div class="h5"><br>
Good luck with it,<br>
<br>
        f<br>
--<br>
Francis Daly        <a href="mailto:francis@daoine.org">francis@daoine.org</a><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>