xdrpp
RFC4506 XDR compiler and message library
arpc.cc
1 
2 #include <xdrpp/arpc.h>
3 
4 namespace xdr {
5 
6 void
7 arpc_server::receive(rpc_sock *ms, msg_ptr buf)
8 {
9  dispatch(nullptr, std::move(buf), rpc_sock_reply_t{ms});
10 }
11 
12 }
Most of the xdrpp library is encapsulated in the xdr namespace.
Definition: arpc.cc:4
A wrapper around xdr::msg_sock that separates calls from replies.
Definition: msgsock.h:92
Asynchronous RPC interface.
Functor wrapper around rpc_sock::send_reply.
Definition: msgsock.h:133