<div dir="ltr">Hi Francis,<div><br></div><div>thank you for your input!<br><div><br></div><div>I have requirement to create own cookie  based on input  and wirte the that cookie in header.</div><div>whenever i need that i can read from header and use it.</div><div><br></div><div><br></div><div>for example:-</div><div><br></div><div>I have created my own cookie "thissomevalue" worte in header and later the same read from header.</div><div><br></div><div>Please check my code and let me know why i am not able to read the value from header.</div><div><br></div><div><div>Below code snippet to set header value in request header:-</div><div><br></div><div>ngx_table_elt_t *cookie;</div><div>cookie = ngx_list_push(&r->headers_in.headers);</div><div>cookie->lowcase_key = (u_char*) "cookie";</div><div>ngx_str_set(&cookie->key, "Cookie");</div><div>ngx_str_set(&cookie->value, "somevalue");</div><div>cookie->hash = ngx_crc32_long(cookie->lowcase_key, cookie->key.len);</div><div><br></div><div><br></div><div>Below code snippet to read set value from header:-</div><div><br></div><div>ngx_http_core_main_conf_t   *clcf;</div><div>ngx_str_t                   *type;</div><div>ngx_uint_t                   key;</div><div>ngx_str_t    val = ngx_string("cookie");</div><div>clcf = ngx_http_get_module_main_conf(r, ngx_http_core_module);</div><div>key= ngx_hash_key_lc(val.data, val.len);</div><div>type = ngx_hash_find(&clcf->headers_in_hash, key,  val.data, val.len);</div><div><br></div><div>if (type != NULL) </div><div>{</div><div>ngx_table_elt_t *test_val;</div><div>test_val= ngx_list_push(&r->headers_out.headers);</div><div>test_val->lowcase_key = (u_char*) "test_val";</div><div>ngx_str_set(&test_val->key, "Test_Val");</div><div>ngx_str_set(&test_val->value, type->data);</div><div>test_val->hash = ngx_crc32_long(test_val->lowcase_key, test_val->key.len);</div><div>}</div><div><br></div><div>curl response:-Test_val was accepting "somevalue"</div><div>HTTP/1.1 200 OK</div><div>Server: nginx/1.9.12</div><div>Date: Tue, 26 Apr 2016 19:13:40 GMT</div><div>Content-Type: text/plain</div><div>Content-Length: 34</div><div>Connection: keep-alive</div><div><span style="background-color:rgb(255,0,0)">Test_Val: Cookie </span></div><div><br></div><div>Hello, This is Nginx test Module!</div></div><div><br></div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Sat, Apr 23, 2016 at 12:21 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 Thu, Apr 21, 2016 at 01:04:40PM +0530, Pankaj Chaudhary wrote:<br>
<br>
Hi there,<br>
<br>
</span><span class="">> yes i am able to write successfully but while reading i am not getting the<br>
> my written value in header.<br>
><br>
> for Example from my source code:-I am writing  "thisitestvalue" value<br>
> against  key "Set-Cookie" but if trying to read value against key "Set-Cookie"<br>
>  not getting .<br>
<br>
</span>The curl output you showed included<br>
<br>
  cookie: thisitestvalue<br>
<br>
And did not include "Set-Cookie:". Perhaps you were testing different<br>
code then.<br>
<br>
And if you write in to the headers_out structure, you would need to<br>
read from the headers_out structure for what you just wrote (except you<br>
already know what you just wrote, so I'm not sure why you would want to<br>
read it again).<br>
<br>
If you have copied the example code, and do not get the desired output,<br>
then presumably either you copied it wrong, or the example code is wrong.<br>
<div class="HOEnZb"><div class="h5"><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></div>