├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── dub.json ├── examples ├── buffer_example │ ├── .gitignore │ ├── dub.json │ └── src │ │ └── app.d ├── message.buffer ├── rpc_client │ ├── .gitignore │ ├── dub.json │ └── src │ │ └── app.d └── rpc_server │ ├── .gitignore │ ├── dub.json │ └── src │ └── app.d ├── libbuffer └── src │ └── buffer │ ├── compiler.d │ ├── message.d │ ├── package.d │ ├── packet.d │ ├── rpc │ ├── client.d │ └── server.d │ └── utils.d └── other_client └── C ├── README.md └── compiler ├── .gitignore ├── dub.json └── src └── app.d /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shove70/buffer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shove70/buffer/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shove70/buffer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shove70/buffer/HEAD/README.md -------------------------------------------------------------------------------- /dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shove70/buffer/HEAD/dub.json -------------------------------------------------------------------------------- /examples/buffer_example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shove70/buffer/HEAD/examples/buffer_example/.gitignore -------------------------------------------------------------------------------- /examples/buffer_example/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shove70/buffer/HEAD/examples/buffer_example/dub.json -------------------------------------------------------------------------------- /examples/buffer_example/src/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shove70/buffer/HEAD/examples/buffer_example/src/app.d -------------------------------------------------------------------------------- /examples/message.buffer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shove70/buffer/HEAD/examples/message.buffer -------------------------------------------------------------------------------- /examples/rpc_client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shove70/buffer/HEAD/examples/rpc_client/.gitignore -------------------------------------------------------------------------------- /examples/rpc_client/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shove70/buffer/HEAD/examples/rpc_client/dub.json -------------------------------------------------------------------------------- /examples/rpc_client/src/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shove70/buffer/HEAD/examples/rpc_client/src/app.d -------------------------------------------------------------------------------- /examples/rpc_server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shove70/buffer/HEAD/examples/rpc_server/.gitignore -------------------------------------------------------------------------------- /examples/rpc_server/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shove70/buffer/HEAD/examples/rpc_server/dub.json -------------------------------------------------------------------------------- /examples/rpc_server/src/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shove70/buffer/HEAD/examples/rpc_server/src/app.d -------------------------------------------------------------------------------- /libbuffer/src/buffer/compiler.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shove70/buffer/HEAD/libbuffer/src/buffer/compiler.d -------------------------------------------------------------------------------- /libbuffer/src/buffer/message.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shove70/buffer/HEAD/libbuffer/src/buffer/message.d -------------------------------------------------------------------------------- /libbuffer/src/buffer/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shove70/buffer/HEAD/libbuffer/src/buffer/package.d -------------------------------------------------------------------------------- /libbuffer/src/buffer/packet.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shove70/buffer/HEAD/libbuffer/src/buffer/packet.d -------------------------------------------------------------------------------- /libbuffer/src/buffer/rpc/client.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shove70/buffer/HEAD/libbuffer/src/buffer/rpc/client.d -------------------------------------------------------------------------------- /libbuffer/src/buffer/rpc/server.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shove70/buffer/HEAD/libbuffer/src/buffer/rpc/server.d -------------------------------------------------------------------------------- /libbuffer/src/buffer/utils.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shove70/buffer/HEAD/libbuffer/src/buffer/utils.d -------------------------------------------------------------------------------- /other_client/C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shove70/buffer/HEAD/other_client/C/README.md -------------------------------------------------------------------------------- /other_client/C/compiler/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shove70/buffer/HEAD/other_client/C/compiler/.gitignore -------------------------------------------------------------------------------- /other_client/C/compiler/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shove70/buffer/HEAD/other_client/C/compiler/dub.json -------------------------------------------------------------------------------- /other_client/C/compiler/src/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shove70/buffer/HEAD/other_client/C/compiler/src/app.d --------------------------------------------------------------------------------