aboutsummaryrefslogtreecommitdiff
path: root/src/misc/ngx_cpp_test_module.cpp
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2008-08-05 19:32:50 +0000
committerIgor Sysoev <igor@sysoev.ru>2008-08-05 19:32:50 +0000
commite24b57ad9f06e5e48eda02f0d79a922797a68a87 (patch)
treeca74c61200f3ef394a1b06adb2ea19725c347ce4 /src/misc/ngx_cpp_test_module.cpp
parent36876c3d6c324f4f4f338b41e4b9376b0ad028bc (diff)
downloadnginx-e24b57ad9f06e5e48eda02f0d79a922797a68a87.tar.gz
nginx-e24b57ad9f06e5e48eda02f0d79a922797a68a87.zip
ngx_cpp_test_module
Diffstat (limited to 'src/misc/ngx_cpp_test_module.cpp')
-rw-r--r--src/misc/ngx_cpp_test_module.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/misc/ngx_cpp_test_module.cpp b/src/misc/ngx_cpp_test_module.cpp
new file mode 100644
index 000000000..8f87dcdad
--- /dev/null
+++ b/src/misc/ngx_cpp_test_module.cpp
@@ -0,0 +1,27 @@
+
+// stub module to test header files' C++ compatibilty
+
+extern "C" {
+ #include <ngx_config.h>
+ #include <ngx_core.h>
+ #include <ngx_event.h>
+ #include <ngx_event_connect.h>
+ #include <ngx_event_pipe.h>
+
+ #include <ngx_http.h>
+
+ #include <ngx_mail.h>
+ #include <ngx_mail_pop3_module.h>
+ #include <ngx_mail_imap_module.h>
+ #include <ngx_mail_smtp_module.h>
+}
+
+// nginx header files should go before other, because they define 64-bit off_t
+// #include <string>
+
+
+void
+ngx_cpp_test_handler(void *data)
+{
+ return;
+}