From c55f394eb74d593bd5535ba3dc639473db69784d Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Mon, 20 Mar 2017 20:09:07 +0000 Subject: [PATCH] wip client --- client | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 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() -- 2.30.2