Saved searches

Use saved searches to filter your results more quickly

Cancel Create saved search Sign up Reseting focus

You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.

Protocol Buffers C RPC implementation

License

Notifications You must be signed in to change notification settings

protobuf-c/protobuf-c-rpc

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Go to file

Folders and files

Last commit message Last commit date

Latest commit

History

View all files

Repository files navigation

Overview

This is protobuf-c-rpc , a library for performing RPC with protobuf-c . It was formerly integrated into the main protobuf-c distribution but has now been split out.

Building

protobuf-c-rpc requires a C compiler, protobuf-c, and pkg-config to be installed. protobuf-c itself requires Google Protocol Buffers to be installed.

./configure && make && make install 

If building from a git checkout, the autotools ( autoconf , automake , libtool ) must also be installed, and the build system must be generated by running the autogen.sh script.

./autogen.sh && ./configure && make && make install 

Contributing

Please send patches to the protobuf-c mailing list or by opening a GitHub pull request. Copyright to all contributions are retained by the original author, but must be licensed under the terms of the BSD-2-Clause license. Please add a Signed-off-by header to your commit message ( git commit -s ) to indicate that you are licensing your contribution under these terms.