├── LICENSE.txt ├── README.md ├── examples └── with_http_server │ ├── Readme.md │ ├── dub.sdl │ └── source │ ├── app.d │ └── rpcserver.d ├── package.json ├── posix.mak └── src └── msgpackrpc ├── client.d ├── common.d ├── package.d ├── server.d └── transport ├── tcp.d └── udp.d /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack-rpc/msgpack-rpc-d/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack-rpc/msgpack-rpc-d/HEAD/README.md -------------------------------------------------------------------------------- /examples/with_http_server/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack-rpc/msgpack-rpc-d/HEAD/examples/with_http_server/Readme.md -------------------------------------------------------------------------------- /examples/with_http_server/dub.sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack-rpc/msgpack-rpc-d/HEAD/examples/with_http_server/dub.sdl -------------------------------------------------------------------------------- /examples/with_http_server/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack-rpc/msgpack-rpc-d/HEAD/examples/with_http_server/source/app.d -------------------------------------------------------------------------------- /examples/with_http_server/source/rpcserver.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack-rpc/msgpack-rpc-d/HEAD/examples/with_http_server/source/rpcserver.d -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack-rpc/msgpack-rpc-d/HEAD/package.json -------------------------------------------------------------------------------- /posix.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack-rpc/msgpack-rpc-d/HEAD/posix.mak -------------------------------------------------------------------------------- /src/msgpackrpc/client.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack-rpc/msgpack-rpc-d/HEAD/src/msgpackrpc/client.d -------------------------------------------------------------------------------- /src/msgpackrpc/common.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack-rpc/msgpack-rpc-d/HEAD/src/msgpackrpc/common.d -------------------------------------------------------------------------------- /src/msgpackrpc/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack-rpc/msgpack-rpc-d/HEAD/src/msgpackrpc/package.d -------------------------------------------------------------------------------- /src/msgpackrpc/server.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack-rpc/msgpack-rpc-d/HEAD/src/msgpackrpc/server.d -------------------------------------------------------------------------------- /src/msgpackrpc/transport/tcp.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack-rpc/msgpack-rpc-d/HEAD/src/msgpackrpc/transport/tcp.d -------------------------------------------------------------------------------- /src/msgpackrpc/transport/udp.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack-rpc/msgpack-rpc-d/HEAD/src/msgpackrpc/transport/udp.d --------------------------------------------------------------------------------