about summary refs log tree commit diff stats
path: root/WWW/Library/Implementation/HTTP.c
diff options
context:
space:
mode:
Diffstat (limited to 'WWW/Library/Implementation/HTTP.c')
-rw-r--r--WWW/Library/Implementation/HTTP.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/WWW/Library/Implementation/HTTP.c b/WWW/Library/Implementation/HTTP.c
index 05b3e89c..ab5b3bc7 100644
--- a/WWW/Library/Implementation/HTTP.c
+++ b/WWW/Library/Implementation/HTTP.c
@@ -185,6 +185,11 @@ try_again:
       goto done;
   }
 
+/* *sob*  All this needs to be converted to handle binary strings
+ * if we're going to be able to handle binary form uploads...
+ * This is a nice long function as well.  *sigh*  -RJP
+ */
+
   /*	Ask that node for the document,
   **	omitting the host name & anchor
   */
@@ -583,6 +588,10 @@ try_again:
 	if (!anAnchor->post_data)
 	  content_length = 0;
 	else
+/* 
+ * Ack!  This assumes non-binary data!  Icky!  
+ * 
+ */
 	  content_length = strlen (anAnchor->post_data);
 	sprintf (line, "Content-length: %d%c%c",
 		 content_length, CR, LF);