<div dir="ltr"><div>Hi All,</div><div><br></div><div>i am trying to set value in header with the help of below code snippet .</div><div><br></div><div>ngx_table_elt_t *h1;</div><div>  h1 = ngx_list_push(&r->headers_out.headers);</div><div>  h1->hash = 1;</div><div>  ngx_str_set(&h1->key, "http_user_agent");</div><div>  ngx_str_set(&h1->value, "user_agent_value");</div><div><br></div><div>if i try to retrieve the same value then getting response "(52) Empty reply from server"</div><div><br></div><div>ngx_http_core_loc_conf_t          *clcf;</div><div>ngx_str_t                         *type;</div><div>ngx_uint_t                   hash;</div><div>ngx_str_t    name = ngx_string("http_user_agent");</div><div>clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);</div><div>hash = ngx_hash_key_lc(name.data, name.len);</div><div>type = ngx_hash_find(&clcf->types_hash, hash, name.data, name.len);</div><div><br></div><div>Can anyone help me to fix this problem.</div></div>