Socket permission querying
[hcoop/domtool2.git] / src / msgTypes.sml
index e0f4385..b91e198 100644 (file)
 
 structure MsgTypes = struct
 
+datatype socket_permission =
+        Any
+       | Client
+       | Server
+       | Nada
+
 datatype query =
         QApt of string
        (* Is this apt package installed? *)
@@ -29,6 +35,8 @@ datatype query =
        (* Is this user allowed to use FTP? *)
        | QTrustedPath of string
        (* Is this user restricted to trusted-path executables? *)
+       | QSocket of string
+       (* What socket permissions does this user have? *)
 
 datatype msg =
         MsgOk
@@ -98,5 +106,7 @@ datatype msg =
        (* Answers to boolean queries *)
        | MsgQuery of query
        (* Ask for host-specific information *)
+       | MsgSocket of socket_permission
+       (* Answer to a QSocket query *)
 
 end