]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/DEVEL/ocaml-http/examples/chdir.ml
ocaml 3.09 transition
[helm.git] / helm / DEVEL / ocaml-http / examples / chdir.ml
index 183b3ca00bd6dfdd96a859dda713221029c86af8..bcba1ebc33947264625c0f801c1262ac0a05f984 100644 (file)
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *)
 
-open Http_daemon;;
-open Printf;;
-start
-  ~port:9999
-  ~root:"/etc"
-  (fun _ _ outchan -> respond ~body:(sprintf "%s\n" (Sys.getcwd ())) outchan)
+open Printf
+open Http_types
+
+let spec =
+  { Http_daemon.default_spec with
+      callback = (fun _ outchan ->
+        Http_daemon.respond ~body:(sprintf "%s\n" (Sys.getcwd ())) outchan);
+      port = 9999;
+      root_dir = Some "/etc";
+  }
+
+let _ = Http_daemon.main spec
+