c1f1be668b4bfee7cfc182e2946c66301bb5797e
[oweals/gnunet.git] / src / nat / gnunet-nat-server.c
1 /*
2      This file is part of GNUnet.
3      (C) 2010 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file src/nat/gnunet-nat-server.c
23  * @brief Daemon to run on 'gnunet.org' to help test NAT traversal code
24  * @author Christian Grothoff
25  *
26  */
27 #include "platform.h"
28 #include "gnunet_util_lib.h"
29
30 /**
31  * Should we print some debug output?
32  */
33 #define VERBOSE 0
34
35 /**
36  * Main function that will be run.
37  *
38  * @param cls closure
39  * @param args remaining command-line arguments
40  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
41  * @param c configuration
42  */
43 static void
44 run (void *cls,
45      char *const *args,
46      const char *cfgfile,
47      const struct GNUNET_CONFIGURATION_Handle * c)
48 {
49 }
50
51
52 int
53 main (int argc, char *const argv[])
54 {
55   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
56     GNUNET_GETOPT_OPTION_END
57   };
58
59   if (GNUNET_OK !=
60       GNUNET_PROGRAM_run (argc, argv, 
61                           "gnunet-nat-server", 
62                           _("GNUnet NAT traversal test helper daemon"), 
63                           options,
64                           &run, NULL))
65     return 1;
66   return 0;
67 }
68
69
70 /* end of gnunet-nat-server.c */