<p dir="ltr">Hi Francis,</p>
<p dir="ltr">Thank you for your comments.<br>
Actually I have requirement to add value to header and then read same value like cookies values,URL.<br>
Is any API which I can use for the same.<br>
Please suggest.</p>
<div class="gmail_quote">On 14 Apr 2016 22:25, "Francis Daly" <<a href="mailto:francis@daoine.org">francis@daoine.org</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On Thu, Apr 14, 2016 at 03:34:40PM +0530, Pankaj Chaudhary wrote:<br>
<br>
Hi there,<br>
<br>
> i am trying to set value in header with the help of below code snippet .<br>
<br>
Web searches for how to write nginx modules tend to point towards<br>
"Emiller's Guide" or the "Nginx Development Kit".<br>
<br>
You may find good background reading there (allowing for any changes<br>
to the nginx internals since they were written) to help you create a<br>
"hello world" module.<br>
<br>
After that, you'll have a skeleton into which you can add your specific<br>
pieces, knowing that the basic starting point does work for you.<br>
<br>
> ngx_table_elt_t *h1;<br>
>   h1 = ngx_list_push(&r->headers_out.headers);<br>
>   h1->hash = 1;<br>
>   ngx_str_set(&h1->key, "http_user_agent");<br>
>   ngx_str_set(&h1->value, "user_agent_value");<br>
><br>
> if i try to retrieve the same value then getting response "(52) Empty reply<br>
> from server"<br>
<br>
There, it looks like you wrote something to a "headers_out.headers"<br>
data structure.<br>
<br>
> ngx_http_core_loc_conf_t          *clcf;<br>
> ngx_str_t                         *type;<br>
> ngx_uint_t                   hash;<br>
> ngx_str_t    name = ngx_string("http_user_agent");<br>
> clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);<br>
> hash = ngx_hash_key_lc(name.data, name.len);<br>
> type = ngx_hash_find(&clcf->types_hash, hash, name.data, name.len);<br>
<br>
And there it looks like you tried to read something from a "types_hash"<br>
data structure. So the "type" variable is probably NULL, and your code<br>
should do something sensible with that value.<br>
<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>
</blockquote></div>