├── BUILD ├── README.md ├── address_resolver └── address_resolver.h ├── examples └── echo_server │ └── echo.proto └── rpc ├── BUILD ├── error_code.proto ├── message.proto ├── meta.proto └── option.proto /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen3feng/foxy/HEAD/BUILD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | foxy 2 | ==== 3 | 4 | A protobuf based C++ RPC server framework -------------------------------------------------------------------------------- /address_resolver/address_resolver.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/echo_server/echo.proto: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpc/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen3feng/foxy/HEAD/rpc/BUILD -------------------------------------------------------------------------------- /rpc/error_code.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen3feng/foxy/HEAD/rpc/error_code.proto -------------------------------------------------------------------------------- /rpc/message.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen3feng/foxy/HEAD/rpc/message.proto -------------------------------------------------------------------------------- /rpc/meta.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen3feng/foxy/HEAD/rpc/meta.proto -------------------------------------------------------------------------------- /rpc/option.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen3feng/foxy/HEAD/rpc/option.proto --------------------------------------------------------------------------------