OSDN Git Service

Create branch packet_edit.
[ultramonkey-l7/sslproxy.git] / src / sslproxy.cpp
1 /*\r
2  * @file  sslproxy.cpp\r
3  * @brief the main module of SSLProxy module wrapper\r
4  *\r
5  * Copyright (C) 2008  NTT COMWARE Corporation.\r
6  *\r
7  * This program is free software; you can redistribute it and/or\r
8  * modify it under the terms of the GNU Lesser General Public\r
9  * License as published by the Free Software Foundation; either\r
10  * version 2.1 of the License, or (at your option) any later version.\r
11  *\r
12  * This program is distributed in the hope that it will be useful,\r
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\r
15  * Lesser General Public License for more details.\r
16  *\r
17  * You should have received a copy of the GNU Lesser General Public\r
18  * License along with this library; if not, write to the Free Software\r
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA\r
20  * 02110-1301 USA\r
21  *\r
22  **********************************************************************\r
23  *\r
24  * Distributed under the Boost Software Licence, Version 1.0\r
25  * http://www.boost.org/LICENSE_1_0.txt\r
26  *\r
27  **********************************************************************/\r
28 \r
29 #include "logger_wrapper.h"\r
30 #include "parameter_wrapper.h"\r
31 \r
32 extern void sslproxy_main(int, char *[]);\r
33 \r
34 using namespace l7vs;\r
35 \r
36 Logger Logger::instance;\r
37 Parameter Parameter::instance;\r
38 \r
39 int\r
40 main(int argc, char *argv[])\r
41 {\r
42         sslproxy_main(argc, argv);\r
43 }\r