├── .gitignore ├── .travis.yml ├── ChangeLog ├── LICENSE ├── Makefile.am ├── README.md ├── TODO ├── autogen.sh ├── configure.ac ├── example ├── dirlookup │ ├── dirlookup.proto │ ├── example-client.c │ ├── example-server.c │ └── example.database ├── sctp-rpc │ ├── example-client.c │ ├── example-server-2.c │ ├── example-server.c │ ├── example-word-funcs-service.c │ ├── example-word-funcs-service.h │ ├── example.proto │ ├── protobuf-c-sctp.h │ ├── render-rfc │ ├── rfc-protobuf-sctp.ms │ └── sctp-channel.c └── simplerpc │ ├── simplerpc.c │ ├── simplerpc.h │ └── simplerpc.proto ├── m4 ├── .gitignore ├── code_coverage.m4 ├── pkg.m4 └── valgrind-tests.m4 ├── protobuf-c-rpc ├── gsklistmacros.h ├── gskrbtreemacros.h ├── libprotobuf-c-rpc.pc.in ├── protobuf-c-rpc-client.c ├── protobuf-c-rpc-data-buffer.c ├── protobuf-c-rpc-data-buffer.h ├── protobuf-c-rpc-dispatch.c ├── protobuf-c-rpc-dispatch.h ├── protobuf-c-rpc-server.c └── protobuf-c-rpc.h └── t ├── test-rpc.c └── test.proto /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/.travis.yml -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/TODO -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec autoreconf -fvi 3 | -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/configure.ac -------------------------------------------------------------------------------- /example/dirlookup/dirlookup.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/example/dirlookup/dirlookup.proto -------------------------------------------------------------------------------- /example/dirlookup/example-client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/example/dirlookup/example-client.c -------------------------------------------------------------------------------- /example/dirlookup/example-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/example/dirlookup/example-server.c -------------------------------------------------------------------------------- /example/dirlookup/example.database: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/example/dirlookup/example.database -------------------------------------------------------------------------------- /example/sctp-rpc/example-client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/example/sctp-rpc/example-client.c -------------------------------------------------------------------------------- /example/sctp-rpc/example-server-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/example/sctp-rpc/example-server-2.c -------------------------------------------------------------------------------- /example/sctp-rpc/example-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/example/sctp-rpc/example-server.c -------------------------------------------------------------------------------- /example/sctp-rpc/example-word-funcs-service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/example/sctp-rpc/example-word-funcs-service.c -------------------------------------------------------------------------------- /example/sctp-rpc/example-word-funcs-service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/example/sctp-rpc/example-word-funcs-service.h -------------------------------------------------------------------------------- /example/sctp-rpc/example.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/example/sctp-rpc/example.proto -------------------------------------------------------------------------------- /example/sctp-rpc/protobuf-c-sctp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/example/sctp-rpc/protobuf-c-sctp.h -------------------------------------------------------------------------------- /example/sctp-rpc/render-rfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/example/sctp-rpc/render-rfc -------------------------------------------------------------------------------- /example/sctp-rpc/rfc-protobuf-sctp.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/example/sctp-rpc/rfc-protobuf-sctp.ms -------------------------------------------------------------------------------- /example/sctp-rpc/sctp-channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/example/sctp-rpc/sctp-channel.c -------------------------------------------------------------------------------- /example/simplerpc/simplerpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/example/simplerpc/simplerpc.c -------------------------------------------------------------------------------- /example/simplerpc/simplerpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/example/simplerpc/simplerpc.h -------------------------------------------------------------------------------- /example/simplerpc/simplerpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/example/simplerpc/simplerpc.proto -------------------------------------------------------------------------------- /m4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/m4/.gitignore -------------------------------------------------------------------------------- /m4/code_coverage.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/m4/code_coverage.m4 -------------------------------------------------------------------------------- /m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/m4/pkg.m4 -------------------------------------------------------------------------------- /m4/valgrind-tests.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/m4/valgrind-tests.m4 -------------------------------------------------------------------------------- /protobuf-c-rpc/gsklistmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/protobuf-c-rpc/gsklistmacros.h -------------------------------------------------------------------------------- /protobuf-c-rpc/gskrbtreemacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/protobuf-c-rpc/gskrbtreemacros.h -------------------------------------------------------------------------------- /protobuf-c-rpc/libprotobuf-c-rpc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/protobuf-c-rpc/libprotobuf-c-rpc.pc.in -------------------------------------------------------------------------------- /protobuf-c-rpc/protobuf-c-rpc-client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/protobuf-c-rpc/protobuf-c-rpc-client.c -------------------------------------------------------------------------------- /protobuf-c-rpc/protobuf-c-rpc-data-buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/protobuf-c-rpc/protobuf-c-rpc-data-buffer.c -------------------------------------------------------------------------------- /protobuf-c-rpc/protobuf-c-rpc-data-buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/protobuf-c-rpc/protobuf-c-rpc-data-buffer.h -------------------------------------------------------------------------------- /protobuf-c-rpc/protobuf-c-rpc-dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/protobuf-c-rpc/protobuf-c-rpc-dispatch.c -------------------------------------------------------------------------------- /protobuf-c-rpc/protobuf-c-rpc-dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/protobuf-c-rpc/protobuf-c-rpc-dispatch.h -------------------------------------------------------------------------------- /protobuf-c-rpc/protobuf-c-rpc-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/protobuf-c-rpc/protobuf-c-rpc-server.c -------------------------------------------------------------------------------- /protobuf-c-rpc/protobuf-c-rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/protobuf-c-rpc/protobuf-c-rpc.h -------------------------------------------------------------------------------- /t/test-rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/t/test-rpc.c -------------------------------------------------------------------------------- /t/test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobuf-c/protobuf-c-rpc/HEAD/t/test.proto --------------------------------------------------------------------------------