From: Ian Jackson Date: Mon, 20 Mar 2017 20:09:07 +0000 (+0000) Subject: wip client X-Git-Tag: hippotat/1.0.0~55^2~221 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=hippotat.git;a=commitdiff_plain;h=c55f394eb74d593bd5535ba3dc639473db69784d wip client --- diff --git a/client b/client new file mode 100755 index 0000000..b9f8ce5 --- /dev/null +++ b/client @@ -0,0 +1,23 @@ +#!/usr/bin/python3 + +from hippotat import * + +defcfg = ''' +[DEFAULT] +max_requests_outstanding = 4 + +[virtual] +mtu = 1500 +# [host] } maybe computed from `network' (see server defaults) + +[server] +# url } maybe computed from `addrs' and `port' (see server defaults) + +# [] +# password = +''' + +def startup(): + common_startup(defcfg) + +startup()