chiark / gitweb /
wip client
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Mon, 20 Mar 2017 20:09:07 +0000 (20:09 +0000)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Mon, 20 Mar 2017 20:09:07 +0000 (20:09 +0000)
client [new file with mode: 0755]

diff --git a/client b/client
new file mode 100755 (executable)
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)
+
+# [<my ip address>]
+# password = <password>
+'''
+
+def startup():
+  common_startup(defcfg)
+
+startup()