ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/src/conf.C
(Generate patch)

Comparing gvpe/src/conf.C (file contents):
Revision 1.17 by pcg, Tue Oct 14 15:48:15 2003 UTC vs.
Revision 1.21 by pcg, Sat Jan 17 01:18:36 2004 UTC

1/* 1/*
2 conf.c -- configuration code 2 conf.c -- configuration code
3 Copyright (C) 1998 Robert van der Meulen 3 Copyright (C) 2003-2004 Marc Lehmann <pcg@goof.com>
4 1998-2002 Ivo Timmermans <ivo@o2w.nl>
5 2000-2002 Guus Sliepen <guus@sliepen.eu.org>
6 2000 Cris van Pelt <tribbel@arise.dhs.org>
7 2003 Marc Lehmann <pcg@goof.com>
8 4
9 This program is free software; you can redistribute it and/or modify 5 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by 6 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or 7 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version. 8 (at your option) any later version.
101 97
102void configuration::init () 98void configuration::init ()
103{ 99{
104 memset (this, 0, sizeof (*this)); 100 memset (this, 0, sizeof (*this));
105 101
102 mtu = DEFAULT_MTU;
106 rekey = DEFAULT_REKEY; 103 rekey = DEFAULT_REKEY;
107 keepalive = DEFAULT_KEEPALIVE; 104 keepalive = DEFAULT_KEEPALIVE;
108 llevel = L_INFO; 105 llevel = L_INFO;
109 ip_proto = IPPROTO_GRE; 106 ip_proto = IPPROTO_GRE;
110#if ENABLE_ICMP 107#if ENABLE_ICMP
228 else 225 else
229 slog (L_WARN, "'%s': %s, at '%s' line %d", val, UNKNOWN_LOGLEVEL, fname, line); 226 slog (L_WARN, "'%s': %s, at '%s' line %d", val, UNKNOWN_LOGLEVEL, fname, line);
230 } 227 }
231 else if (!strcmp (var, "ip-proto")) 228 else if (!strcmp (var, "ip-proto"))
232 ip_proto = atoi (val); 229 ip_proto = atoi (val);
230 else if (!strcmp (var, "icmp-type"))
231 {
233#if ENABLE_ICMP 232#if ENABLE_ICMP
234 //TODO: error message
235 else if (!strcmp (var, "icmp-type"))
236 icmp_type = atoi (val); 233 icmp_type = atoi (val);
237#endif 234#endif
235 }
238 236
239 // per config 237 // per config
240 else if (!strcmp (var, "node")) 238 else if (!strcmp (var, "node"))
241 { 239 {
242 default_node.id++; 240 default_node.id++;
301 script_if_up = strdup (val); 299 script_if_up = strdup (val);
302 else if (!strcmp (var, "node-up")) 300 else if (!strcmp (var, "node-up"))
303 script_node_up = strdup (val); 301 script_node_up = strdup (val);
304 else if (!strcmp (var, "node-down")) 302 else if (!strcmp (var, "node-down"))
305 script_node_down = strdup (val); 303 script_node_down = strdup (val);
304 else if (!strcmp (var, "http-proxy-host"))
305 {
306#if ENABLE_HTTP_PROXY 306#if ENABLE_HTTP_PROXY
307 else if (!strcmp (var, "http-proxy-host"))
308 proxy_host = strdup (val); 307 proxy_host = strdup (val);
308#endif
309 }
309 else if (!strcmp (var, "http-proxy-port")) 310 else if (!strcmp (var, "http-proxy-port"))
311 {
312#if ENABLE_HTTP_PROXY
310 proxy_port = atoi (val); 313 proxy_port = atoi (val);
314#endif
315 }
311 else if (!strcmp (var, "http-proxy-auth")) 316 else if (!strcmp (var, "http-proxy-auth"))
317 {
318#if ENABLE_HTTP_PROXY
312 proxy_auth = (char *)base64_encode ((const u8 *)val, strlen (val)); 319 proxy_auth = (char *)base64_encode ((const u8 *)val, strlen (val));
313#endif 320#endif
321 }
314 322
315 /* node-specific, non-defaultable */ 323 /* node-specific, non-defaultable */
316 else if (node != &default_node && !strcmp (var, "hostname")) 324 else if (node != &default_node && !strcmp (var, "hostname"))
317 { 325 {
318 free (node->hostname); 326 free (node->hostname);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines