diff options
author | Daniil Baturin <daniil@baturin.org> | 2018-02-11 09:56:31 +0700 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2018-02-11 09:56:31 +0700 |
commit | cc95beb520981f0ed855d739a523675932907662 (patch) | |
tree | 3caa8909ef482dcf9d367a19b3a9d0756537233c | |
parent | 76c2a472f9f4869b8a06976eca1c1a025400ca66 (diff) | |
download | vyconf-cc95beb520981f0ed855d739a523675932907662.tar.gz vyconf-cc95beb520981f0ed855d739a523675932907662.zip |
Update the Vyconf_client module for the protobuf change.
-rw-r--r-- | src/vyconf_client.ml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vyconf_client.ml b/src/vyconf_client.ml index 9afc1f2..267b10e 100644 --- a/src/vyconf_client.ml +++ b/src/vyconf_client.ml @@ -1,4 +1,5 @@ include Vyconf_pb +include Vyconf_types type t = { sock: Lwt_unix.file_descr; @@ -24,7 +25,7 @@ let create sockfile = Lwt.return { sock=sock; ic=ic; oc=oc; enc=(Pbrt.Encoder.create ()); closed=false; - session=None; conf_mode=false + session=None; conf_mode=false; } let shutdown client = |