]> git.llucax.com Git - software/pymin.git/blob - config.py
DhcpHandler documentation and improvements.
[software/pymin.git] / config.py
1 # vim: set et sts=4 sw=4 encoding=utf-8 :
2
3 from services import *
4
5 # XXX for testing only
6 def test_func(*args):
7     print 'func:', args
8
9 routes = dict \
10 (
11     test = test_func,
12     dhcp = DhcpHandler(
13         pickle_dir = 'var/lib/pymin/pickle/dhcp',
14         config_dir = 'var/lib/pymin/config/dhcp',
15     ),
16 )
17
18 bind_addr = \
19 (
20     '',   # Bind IP ('' is ANY)
21     9999, # Port
22 )
23