annotate src/misc/ngx_cpp_test_module.cpp @ 682:5cb5db9975ba NGINX_1_3_4

nginx 1.3.4 *) Change: the "ipv6only" parameter is now turned on by default for listening IPv6 sockets. *) Feature: the Clang compiler support. *) Bugfix: extra listening sockets might be created. Thanks to Roman Odaisky. *) Bugfix: nginx/Windows might hog CPU if a worker process failed to start. Thanks to Ricardo Villalobos Guevara. *) Bugfix: the "proxy_pass_header", "fastcgi_pass_header", "scgi_pass_header", "uwsgi_pass_header", "proxy_hide_header", "fastcgi_hide_header", "scgi_hide_header", and "uwsgi_hide_header" directives might be inherited incorrectly.
author Igor Sysoev <http://sysoev.ru>
date Tue, 31 Jul 2012 00:00:00 +0400
parents 05981f639d21
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
394
05981f639d21 nginx 0.7.9
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
1
05981f639d21 nginx 0.7.9
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
2 // stub module to test header files' C++ compatibilty
05981f639d21 nginx 0.7.9
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
3
05981f639d21 nginx 0.7.9
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
4 extern "C" {
05981f639d21 nginx 0.7.9
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
5 #include <ngx_config.h>
05981f639d21 nginx 0.7.9
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
6 #include <ngx_core.h>
05981f639d21 nginx 0.7.9
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
7 #include <ngx_event.h>
05981f639d21 nginx 0.7.9
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
8 #include <ngx_event_connect.h>
05981f639d21 nginx 0.7.9
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
9 #include <ngx_event_pipe.h>
05981f639d21 nginx 0.7.9
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
10
05981f639d21 nginx 0.7.9
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
11 #include <ngx_http.h>
05981f639d21 nginx 0.7.9
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
12
05981f639d21 nginx 0.7.9
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
13 #include <ngx_mail.h>
05981f639d21 nginx 0.7.9
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
14 #include <ngx_mail_pop3_module.h>
05981f639d21 nginx 0.7.9
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
15 #include <ngx_mail_imap_module.h>
05981f639d21 nginx 0.7.9
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
16 #include <ngx_mail_smtp_module.h>
05981f639d21 nginx 0.7.9
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
17 }
05981f639d21 nginx 0.7.9
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
18
05981f639d21 nginx 0.7.9
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
19 // nginx header files should go before other, because they define 64-bit off_t
05981f639d21 nginx 0.7.9
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
20 // #include <string>
05981f639d21 nginx 0.7.9
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
21
05981f639d21 nginx 0.7.9
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
22
682
5cb5db9975ba nginx 1.3.4
Igor Sysoev <http://sysoev.ru>
parents: 394
diff changeset
23 void ngx_cpp_test_handler(void *data);
5cb5db9975ba nginx 1.3.4
Igor Sysoev <http://sysoev.ru>
parents: 394
diff changeset
24
394
05981f639d21 nginx 0.7.9
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
25 void
05981f639d21 nginx 0.7.9
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
26 ngx_cpp_test_handler(void *data)
05981f639d21 nginx 0.7.9
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
27 {
05981f639d21 nginx 0.7.9
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
28 return;
05981f639d21 nginx 0.7.9
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
29 }