# krpc **Repository Path**: Jicky/krpc ## Basic Information - **Project Name**: krpc - **Description**: 基于asio和msgpack的C++11 rpc通信库,支持tcp、udp、本地unix流式套接字和本地unix数据包套接字通信且headeronly。 - **Primary Language**: C++ - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 4 - **Forks**: 4 - **Created**: 2020-12-02 - **Last Updated**: 2024-06-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # krpc #### 介绍 基于asio和msgpack的C++11 rpc通信库,支持tcp、udp、本地unix流式套接字和本地unix数据包套接字通信且headeronly。 #### 依赖 1. msgpack-c,https://github.com/msgpack/msgpack-c/tree/cpp_master 2. asio(non-boost版本),http://think-async.com/Asio 3. c++11 #### 安装教程 1. 把本库中的include/krpc目录整个拷贝到项目的include目录 #### 使用说明 1. 服务端使用单线程通信,支持同步和异步调用,所有用例存放在example目录