chiark / gitweb /
wip client
[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
20def startup():
21 common_startup(defcfg)
22
23startup()