OSDN Git Service

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