X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;ds=sidebyside;f=helm%2FDEVEL%2Focaml-http%2Fexamples%2Fdump_args.ml;h=a6dcdda0e09aa9513bab623a6f70e244fafd56d6;hb=5002153c1f53bffc0a200a88980ad99b1d756703;hp=3287ea710e06e83c6bfcea5783b5432d17b86907;hpb=ca9cd0aeee0ce78a891f7f6091ca8704231a446d;p=helm.git diff --git a/helm/DEVEL/ocaml-http/examples/dump_args.ml b/helm/DEVEL/ocaml-http/examples/dump_args.ml index 3287ea710..a6dcdda0e 100644 --- a/helm/DEVEL/ocaml-http/examples/dump_args.ml +++ b/helm/DEVEL/ocaml-http/examples/dump_args.ml @@ -2,7 +2,7 @@ (* OCaml HTTP - do it yourself (fully OCaml) HTTP daemon - Copyright (C) <2002> Stefano Zacchiroli + Copyright (C) <2002-2004> Stefano Zacchiroli 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 @@ -22,22 +22,23 @@ 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;