chiark / gitweb /
fixes
[hippotat.git] / client
diff --git a/client b/client
index 5d0f427d354714c37f1cd544ac54fd82f5d06ec0..922242d3bca8fe1cb447a19ca73698f5c70057d4 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 +
+            str(c.client)             .encode('ascii')  + crlf +
+            password                                    + crlf +
             str(c.target_outstanding) .encode('ascii')  + crlf +
           ((
             b'--b'                                      + crlf +
@@ -115,9 +115,9 @@ def check_outbound():
            ) if len(d) else b'')                               +
             b'--b--'                                    + crlf)
 
-    df = open('data.dump.dbg', mode='wb')
-    df.write(mime)
-    df.close()
+    #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))