Back to server-slide describe
[hcoop/zz_old/domtool2-proto.git] / src / openssl.sig
CommitLineData
2569e66d 1(* HCoop Domtool (http://hcoop.sourceforge.net/)
2 * Copyright (c) 2006, Adam Chlipala
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 *)
18
19(* OpenSSL *)
20
21signature OPENSSL = sig
22
23exception OpenSSL of string
24
25val ssl_err : string -> unit
26
27type context
28type bio
29type listener
30
d330d9b8 31val readChar : bio -> char option
32val readInt : bio -> int option
33val readLen : bio * int -> string option
34val readChunk : bio -> string option
35val readString : bio -> string option
36
37val writeChar : bio * char -> unit
38val writeInt : bio * int -> unit
39val writeString' : bio * string -> unit
40val writeString : bio * string -> unit
2569e66d 41
3d55b046 42val context : bool -> string * string * string -> context
2569e66d 43
44val connect : context * string -> bio
45val close : bio -> unit
46
cbb8f260 47val listen : context * int -> listener
2569e66d 48val shutdown : listener -> unit
49
cbb8f260 50val accept : listener -> bio option
2569e66d 51
52val peerCN : bio -> string
53
54end