chiark / gitweb /
tracebacks
[hippotat.git] / client
diff --git a/client b/client
index 436592eefcaf3920221c587747a3cf21f6534c07..c9682bd944e135b4a57f0bdb8c375f5bdf2188fa 100755 (executable)
--- a/client
+++ b/client
@@ -105,8 +105,8 @@ def check_outbound():
     lf   =   b'\n'
     mime = (b'--b'                                      + crlf +
             b'Content-Disposition: form-data; name="m"' + crlf + crlf +
-            password                                    +   lf +
-            str(c.client)             .encode('ascii')  +   lf +
+            password                                    + crlf +
+            str(c.client)             .encode('ascii')  + crlf +
             str(c.target_outstanding) .encode('ascii')  + crlf +
           ((
             b'--b'                                      + crlf +
@@ -118,6 +118,7 @@ def check_outbound():
     df = open('data.dump.dbg', mode='wb')
     df.write(mime)
     df.close()
+    # POST -use -c 'multipart/form-data; boundary="b"' http://localhost:8099/ <data.dump.dbg
 
     log_debug(DBG.HTTP_FULL, 'requesting: ' + str(mime))