Re: understanding ngx_str_t structure

2019-09-27 Thread astre
ok thanks, then probably write to syslog using syslog API's and it seems nginx already supports syslog. Will that work? Posted at Nginx Forum: https://forum.nginx.org/read.php?2,285729,285737#msg-285737 ___ nginx mailing list nginx@nginx.org http://mai

Re: understanding ngx_str_t structure

2019-09-27 Thread astre
Right, actually the question is when I use std::cout nothing gets printed in error_log even when it is set to debug. Posted at Nginx Forum: https://forum.nginx.org/read.php?2,285729,285733#msg-285733 ___ nginx mailing list nginx@nginx.org http://mailma

Re: understanding ngx_str_t structure

2019-09-27 Thread astre
Thanks Roman, it is working. Is there a way to directly print using std::cout instead of ngx_log_* functions ? P.S: I'm writing module in C++. Posted at Nginx Forum: https://forum.nginx.org/read.php?2,285729,285731#msg-285731 ___ nginx mailing list ngi

understanding ngx_str_t structure

2019-09-27 Thread astre
Hi, I trying to print the requested URL path. For that I came across the "uri" member which is of type ngx_str_t) under ngx_http_request_t structure. When I print the "uri" using ngx_log_debug1 (ngx_log_debug1(NGX_LOG_DEBUG_HTTP, log, 0, "%s", r->uri.data)) I see some extra data printed. For eg.

Re: c++ dynamic module fails to load

2019-09-24 Thread astre
Thanks Maxim. I have updated my source to reflect the addon name. It is working. Ill get back once I get deep into auto/module and auto/make :) Posted at Nginx Forum: https://forum.nginx.org/read.php?2,285679,285701#msg-285701 ___ nginx mailing list n

c++ dynamic module fails to load

2019-09-24 Thread astre
Hi All, I have a C++ module developed for apache HTTP which now Im trying to port to Nginx. For this I started reading about creating dynamic modules and specifically c++. I already found ngx_cpp_test_module.cpp in the source and able to compile it. I extended it a little and wrote a hello world p