new ipif interpolation
[hippotat] / client
CommitLineData
c55f394e
IJ
1#!/usr/bin/python3
2
3from hippotat import *
4
5defcfg = '''
6[DEFAULT]
7max_requests_outstanding = 4
8
9[virtual]
10mtu = 1500
11# [host] } maybe computed from `network' (see server defaults)
12
13[server]
14# url } maybe computed from `addrs' and `port' (see server defaults)
15
16# [<my ip address>]
17# password = <password>
18'''
19
87a7c0c7
IJ
20def process_cfg():
21 global url
22 global max_requests_outstanding
c55f394e 23
87a7c0c7
IJ
24 process_cfg_common_always()
25
26
27common_startup(defcfg)
28process_cfg()