├── .gitignore ├── .merlin ├── .ocp-indent ├── AUTHORS ├── LICENSE ├── Makefile ├── README.md ├── dune-project ├── oraft-lwt-extprot-io.opam ├── oraft-lwt-tls.opam ├── oraft-lwt.opam ├── oraft-rsm.opam ├── oraft.opam ├── src ├── dune ├── oraft.ml ├── oraft.mli ├── oraft_lwt.ml ├── oraft_lwt.mli ├── oraft_lwt_conn_wrapper.ml ├── oraft_lwt_conn_wrapper.mli ├── oraft_lwt_extprot_io.ml ├── oraft_lwt_extprot_io.mli ├── oraft_lwt_s.ml ├── oraft_lwt_tls.ml ├── oraft_lwt_tls.mli ├── oraft_proto.proto ├── oraft_proto_rsm.proto ├── oraft_proto_types.proto ├── oraft_rsm.ml ├── oraft_rsm.mli └── oraft_rsm_s.ml └── test ├── dict.ml ├── dune └── test_DES.ml /.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | *.install 3 | **/*.merlin -------------------------------------------------------------------------------- /.merlin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/.merlin -------------------------------------------------------------------------------- /.ocp-indent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/.ocp-indent -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/README.md -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 1.0) 2 | -------------------------------------------------------------------------------- /oraft-lwt-extprot-io.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/oraft-lwt-extprot-io.opam -------------------------------------------------------------------------------- /oraft-lwt-tls.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/oraft-lwt-tls.opam -------------------------------------------------------------------------------- /oraft-lwt.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/oraft-lwt.opam -------------------------------------------------------------------------------- /oraft-rsm.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/oraft-rsm.opam -------------------------------------------------------------------------------- /oraft.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/oraft.opam -------------------------------------------------------------------------------- /src/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/src/dune -------------------------------------------------------------------------------- /src/oraft.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/src/oraft.ml -------------------------------------------------------------------------------- /src/oraft.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/src/oraft.mli -------------------------------------------------------------------------------- /src/oraft_lwt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/src/oraft_lwt.ml -------------------------------------------------------------------------------- /src/oraft_lwt.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/src/oraft_lwt.mli -------------------------------------------------------------------------------- /src/oraft_lwt_conn_wrapper.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/src/oraft_lwt_conn_wrapper.ml -------------------------------------------------------------------------------- /src/oraft_lwt_conn_wrapper.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/src/oraft_lwt_conn_wrapper.mli -------------------------------------------------------------------------------- /src/oraft_lwt_extprot_io.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/src/oraft_lwt_extprot_io.ml -------------------------------------------------------------------------------- /src/oraft_lwt_extprot_io.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/src/oraft_lwt_extprot_io.mli -------------------------------------------------------------------------------- /src/oraft_lwt_s.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/src/oraft_lwt_s.ml -------------------------------------------------------------------------------- /src/oraft_lwt_tls.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/src/oraft_lwt_tls.ml -------------------------------------------------------------------------------- /src/oraft_lwt_tls.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/src/oraft_lwt_tls.mli -------------------------------------------------------------------------------- /src/oraft_proto.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/src/oraft_proto.proto -------------------------------------------------------------------------------- /src/oraft_proto_rsm.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/src/oraft_proto_rsm.proto -------------------------------------------------------------------------------- /src/oraft_proto_types.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/src/oraft_proto_types.proto -------------------------------------------------------------------------------- /src/oraft_rsm.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/src/oraft_rsm.ml -------------------------------------------------------------------------------- /src/oraft_rsm.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/src/oraft_rsm.mli -------------------------------------------------------------------------------- /src/oraft_rsm_s.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/src/oraft_rsm_s.ml -------------------------------------------------------------------------------- /test/dict.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/test/dict.ml -------------------------------------------------------------------------------- /test/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/test/dune -------------------------------------------------------------------------------- /test/test_DES.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/oraft/HEAD/test/test_DES.ml --------------------------------------------------------------------------------