view src/misc/ngx_cpp_test_module.cpp @ 527:a607f3a5aefe

Added tag NGINX_0_8_15 for changeset 0161f3197817
author Igor Sysoev <http://sysoev.ru>
date Mon, 14 Sep 2009 00:00:00 +0400
parents 05981f639d21
children 5cb5db9975ba
line wrap: on
line source


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