aboutsummaryrefslogtreecommitdiffstats
path: root/app/nginx/src/misc/ngx_cpp_test_module.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'app/nginx/src/misc/ngx_cpp_test_module.cpp')
-rw-r--r--app/nginx/src/misc/ngx_cpp_test_module.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/app/nginx/src/misc/ngx_cpp_test_module.cpp b/app/nginx/src/misc/ngx_cpp_test_module.cpp
new file mode 100644
index 0000000..5d2f08d
--- /dev/null
+++ b/app/nginx/src/misc/ngx_cpp_test_module.cpp
@@ -0,0 +1,29 @@
+
+// stub module to test header files' C++ compatibility
+
+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);
+
+void
+ngx_cpp_test_handler(void *data)
+{
+ return;
+}