X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=DEVEL%2Focaml-http%2Fhttp_types.mli;h=82967c5e4dda7903fe9493d9a384b54edb290728;hb=61b565d1306b7ab37e436d9fc73e4b1560214664;hp=7206d18dce28c3a59c09a85cbf365643c0ab3ffd;hpb=e8ca5a22b5e7174c27f1855c2687798544e2103e;p=helm.git diff --git a/DEVEL/ocaml-http/http_types.mli b/DEVEL/ocaml-http/http_types.mli index 7206d18dc..82967c5e4 100644 --- a/DEVEL/ocaml-http/http_types.mli +++ b/DEVEL/ocaml-http/http_types.mli @@ -1,8 +1,7 @@ - (* OCaml HTTP - do it yourself (fully OCaml) HTTP daemon - Copyright (C) <2002-2005> Stefano Zacchiroli + Copyright (C) <2002-2007> Stefano Zacchiroli This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as @@ -180,6 +179,9 @@ exception Malformed_query_part of string * string (** invalid request URI encountered *) exception Malformed_request_URI of string + (** malformed cookies *) +exception Malformed_cookies of string + (** malformed request received *) exception Malformed_request of string @@ -285,6 +287,8 @@ class type request = object (** @return the list of all parameter received via POST *) method params_POST: (string * string) list + method cookies: (string * string) list option + (** @return authorization information, if given by the client *) method authorization: auth_info option