]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/DEVEL/ocaml-http/examples/dump_args.ml
debian version 0.0.6-6
[helm.git] / helm / DEVEL / ocaml-http / examples / dump_args.ml
index 3287ea710e06e83c6bfcea5783b5432d17b86907..a6dcdda0e09aa9513bab623a6f70e244fafd56d6 100644 (file)
@@ -2,7 +2,7 @@
 (*
   OCaml HTTP - do it yourself (fully OCaml) HTTP daemon
 
-  Copyright (C) <2002> Stefano Zacchiroli <zack@cs.unibo.it>
+  Copyright (C) <2002-2004> Stefano Zacchiroli <zack@cs.unibo.it>
 
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
 open Printf;;
 
 let callback req outchan =
-  Http_daemon.send_basic_headers ~code:200 outchan;
+  Http_daemon.send_basic_headers ~code:(`Code 200) outchan;
   Http_daemon.send_CRLF outchan;
-  let (s1, s2, s3, s4) = 
-    (sprintf "request path = %s\n"  req#path),
+  let str = 
+    (sprintf "request path = %s\n"  req#path) ^
     (sprintf "request GET params = %s\n"
       (String.concat ";"
-        (List.map (fun (h,v) -> String.concat "=" [h;v]) req#params_GET))),
+        (List.map (fun (h,v) -> String.concat "=" [h;v]) req#params_GET))) ^
     (sprintf "request POST params = %s\n"
       (String.concat ";"
-        (List.map (fun (h,v) -> String.concat "=" [h;v]) req#params_POST))),
+        (List.map (fun (h,v) -> String.concat "=" [h;v]) req#params_POST))) ^
     (sprintf "request ALL params = %s\n"
       (String.concat ";"
-        (List.map (fun (h,v) -> String.concat "=" [h;v]) req#params)))
+        (List.map (fun (h,v) -> String.concat "=" [h;v]) req#params))) ^
+    (sprintf "request BODY = '%s'\n" req#body)
   in
-  output_string outchan (s1 ^ s2 ^ s3 ^ s4);
-  prerr_endline (s1 ^ s2 ^ s3 ^ s4)
+  output_string outchan str;
+  prerr_endline str
 in
 print_endline "Starting custom Http_daemon ...";
 flush stdout;