Removed some dispensable log messages
[cascardo/rnetproxy.git] / improxy.c
1 /*
2 ** Copyright (C) 2006 Thadeu Lima de Souza Cascardo <cascardo@minaslivre.org>
3 **  
4 ** This program is free software; you can redistribute it and/or modify
5 ** it under the terms of the GNU General Public License as published by
6 ** the Free Software Foundation; either version 2 of the License, or
7 ** (at your option) any later version.
8 **  
9 ** This program is distributed in the hope that it will be useful,
10 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 ** GNU General Public License for more details.
13 **  
14 ** You should have received a copy of the GNU General Public License
15 ** along with this program; if not, write to the Free Software
16 ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 **  
18 */
19
20 #include <glib.h>
21 #include <gnet.h>
22 #include <stdio.h>
23 #include "log.h"
24 #include "nethook.h"
25 #include "proto_detect.h"
26
27 #define CONFFILE SYSCONFDIR "/improxy.conf"
28
29 void new_client (GServer* server, GConn* conn, gpointer data)
30 {
31   net_hook_t* hook;
32   if (conn == NULL)
33     {
34       g_critical ("Server has received an error event.");
35       return;
36     }
37   g_message ("Received connection from %s.", conn->hostname);
38   hook = proto_detect_new (conn);
39   gnet_conn_read (conn);
40 }
41
42 static gchar* configfile;
43
44 static GOptionEntry opt_entries[] =
45   {
46     { "config-file", 'c', 0, G_OPTION_ARG_FILENAME, &configfile,
47       "Configuration file location", "file" },
48     { NULL }
49   };
50
51 int main (int argc, char** argv)
52 {
53
54   GOptionContext* opt_ctx;
55   GKeyFile *keyfile;
56   GInetAddr* inetaddr;
57   gchar* conf_address;
58   gint port;
59
60   gnet_init ();
61   im_log_init ();
62
63   configfile = CONFFILE;
64   opt_ctx = g_option_context_new ("");
65   g_option_context_add_main_entries (opt_ctx, opt_entries, NULL);
66   if (!g_option_context_parse (opt_ctx, &argc, &argv, NULL))
67     {
68       g_log (NULL, G_LOG_LEVEL_WARNING | G_LOG_FLAG_FATAL,
69              "Could not parse command line options.");
70     }
71   g_option_context_free (opt_ctx);
72   
73   keyfile =  g_key_file_new ();
74
75   g_key_file_load_from_file (keyfile, configfile, G_KEY_FILE_NONE, NULL);
76
77   conf_address = g_key_file_get_string (keyfile, "global", "address", NULL);
78   port = g_key_file_get_integer (keyfile, "global", "port", NULL);
79
80   g_message ("Listen address is %s:%d.", conf_address, port);
81
82   inetaddr = gnet_inetaddr_new_nonblock (conf_address, port);
83   gnet_server_new (inetaddr, port, new_client, NULL);
84
85   g_main_loop_run (g_main_loop_new (g_main_context_default (), TRUE));
86
87   return 0;
88
89 }