summaryrefslogtreecommitdiffstats
path: root/usr.sbin/nginx/src/misc/ngx_cpp_test_module.cpp
diff options
context:
space:
mode:
authorrobert <robert@openbsd.org>2014-08-26 19:35:31 +0000
committerrobert <robert@openbsd.org>2014-08-26 19:35:31 +0000
commitc11519ffeda73deab560cc100658d89d70c26934 (patch)
tree5d718501b01d61c85227fde68121a14d950853c8 /usr.sbin/nginx/src/misc/ngx_cpp_test_module.cpp
parentusr.sbin (diff)
downloadwireguard-openbsd-c11519ffeda73deab560cc100658d89d70c26934.tar.xz
wireguard-openbsd-c11519ffeda73deab560cc100658d89d70c26934.zip
remove nginx from the base system in favor of OpenBSD's own httpd(8)
Diffstat (limited to 'usr.sbin/nginx/src/misc/ngx_cpp_test_module.cpp')
-rw-r--r--usr.sbin/nginx/src/misc/ngx_cpp_test_module.cpp29
1 files changed, 0 insertions, 29 deletions
diff --git a/usr.sbin/nginx/src/misc/ngx_cpp_test_module.cpp b/usr.sbin/nginx/src/misc/ngx_cpp_test_module.cpp
deleted file mode 100644
index 3cbc0a8111a..00000000000
--- a/usr.sbin/nginx/src/misc/ngx_cpp_test_module.cpp
+++ /dev/null
@@ -1,29 +0,0 @@
-
-// 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);
-
-void
-ngx_cpp_test_handler(void *data)
-{
- return;
-}