/
zOMGdev
/
cppcms
Обзор
Документация
Войти
/
zOMGdev
/
cppcms
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v1.1.1
private/fastcgi_api.h
30 строк
1 KB
Artyom Beilis
Cleanup of auto_ptr and some other warnings
02 мар 2017, 13:32
02 мар 2017, 13:32
d1de6e5
Код
Авторство
О чём код?
/////////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2008-2012 Artyom Beilis (Tonkikh) <artyomtnk@yahoo.com> // // See accompanying file COPYING.TXT file for licensing details. // /////////////////////////////////////////////////////////////////////////////// #ifndef CPPCMS_IMPL_FASTCGI_API_H #define CPPCMS_IMPL_FASTCGI_API_H #include <cppcms/defs.h> #include <string> #include <booster/auto_ptr_inc.h> namespace cppcms { class service; namespace impl { namespace cgi { class acceptor; std::auto_ptr<acceptor> fastcgi_api_tcp_socket_factory(cppcms::service &srv,std::string ip,int port,int backlog); #if !defined(CPPCMS_WIN32) std::auto_ptr<acceptor> fastcgi_api_unix_socket_factory(cppcms::service &srv,std::string socket,int backlog); std::auto_ptr<acceptor> fastcgi_api_unix_socket_factory(cppcms::service &srv,int backlog); #endif } // cgi } // impl } // cppcms #endif