Generation of slash-tilde waklog directives for each user
[hcoop/domtool2.git] / src / msg.sml
index 5eacaa2..3e028c1 100644 (file)
@@ -236,6 +236,7 @@ fun send (bio, m) =
                            OpenSSL.writeString (bio, dom))
       | MsgDescription s => (OpenSSL.writeInt (bio, 40);
                             OpenSSL.writeString (bio, s))
+      | MsgReUsers => OpenSSL.writeInt (bio, 41)
 
 fun checkIt v =
     case v of
@@ -348,6 +349,7 @@ fun recv bio =
                   | 38 => SOME MsgMysqlFixperms
                   | 39 => Option.map MsgDescribe (OpenSSL.readString bio)
                   | 40 => Option.map MsgDescription (OpenSSL.readString bio)
+                  | 41 => SOME MsgReUsers
                   | _ => NONE)
         
 end