Sha256: 5954785d7f61e13a56270607512a3ec5166c338be64cf4908ff97d68b6eda602

Contents?: true

Size: 565 Bytes

Versions: 6

Compression:

Stored size: 565 Bytes

Contents

// 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;
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
nginxtra-1.10.1.13 vendor/nginx/src/misc/ngx_cpp_test_module.cpp
nginxtra-1.10.1.12 vendor/nginx/src/misc/ngx_cpp_test_module.cpp
nginxtra-1.8.1.12 vendor/nginx/src/misc/ngx_cpp_test_module.cpp
nginxtra-1.8.0.11 vendor/nginx/src/misc/ngx_cpp_test_module.cpp
nginxtra-1.8.0.10 vendor/nginx/src/misc/ngx_cpp_test_module.cpp
nginxtra-1.8.0.9 vendor/nginx/src/misc/ngx_cpp_test_module.cpp