SSL interaction with client checking server's CN
[hcoop/domtool2.git] / src / domain.sig
CommitLineData
a3698041
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.
dac62e84 17 *)
a3698041
AC
18
19(* Domain-related primitive actions *)
20
21signature DOMAIN = sig
22
629a34f6
AC
23 val isIdent : char -> bool
24 val validHost : string -> bool
25 val validDomain : string -> bool
26
a3698041
AC
27 val registerBefore : (string -> unit) -> unit
28 val registerAfter : (string -> unit) -> unit
29 (* Register handlers to run just before and after entering a domain
30 * block. *)
31
dac62e84
AC
32 val currentDomain : unit -> string
33
e0b0abd2
AC
34 val domainFile : {node : string, name : string} -> TextIO.outstream
35 (* Open one of the current domain's configuration files for a particular
36 * node. *)
dac62e84 37
e0b0abd2
AC
38 val dnsMaster : unit -> string option
39 (* Name of the node that is the DNS master for the current domain, if there
40 * is one *)
2ed6d0e5
AC
41
42 val nodes : string list
43 (* Names of all system nodes *)
44 val nodeMap : string Ast.StringMap.map
45 (* Map node names to IP addresses *)
8a7c40fa
AC
46 val nodeIp : string -> string
47 (* Look up a node in nodeMap *)
12adf55a
AC
48
49 val setUser : string -> unit
50 val getUser : unit -> string
51 (* Name of the UNIX user providing this configuration *)
52
53 val your_domains : unit -> DataStructures.StringSet.set
54 (* The domains the current user may configure *)
8a7c40fa
AC
55
56 val your_users : unit -> DataStructures.StringSet.set
57 val your_groups : unit -> DataStructures.StringSet.set
58 val your_paths : unit -> DataStructures.StringSet.set
59 (* UNIX users, groups, and paths the user may act with *)
a3698041 60end