]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/DEVEL/ocaml-http/examples/always_ok_daemon.ml
debian version 0.0.6-6
[helm.git] / helm / DEVEL / ocaml-http / examples / always_ok_daemon.ml
index 020d4f600cfb2269b4ce9fb97504654dadaedb47..d5d456d7481d9a22488c4802dcadb2168775ab4f 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
@@ -19,8 +19,8 @@
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *)
 
-open Http.Daemon;;
-open Http.Response;;
+open Http_daemon;;
   (* start an http daemon that alway respond with a 200 status code and an empty
   content *)
-start (fun _ _ -> respond_with (new Http.Response.response))
+start ~port:9999 ~addr:"localhost" (fun _ _ outchan -> respond outchan)
+