Run 'domain' initialization even with 'noDns' is selected.
[hcoop/domtool2.git] / src / openssl.sig
CommitLineData
3b267643
AC
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
36e42cb8
AC
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
3b267643 41
d22c1f00 42val context : bool -> string * string * string -> context
3b267643
AC
43
44val connect : context * string -> bio
45val close : bio -> unit
46
60534712 47val listen : context * int -> listener
3b267643
AC
48val shutdown : listener -> unit
49
60534712 50val accept : listener -> bio option
3b267643
AC
51
52val peerCN : bio -> string
53
54end