org.acplt.oncrpc
Interface OncRpcProtocols
- public abstract interface OncRpcProtocols
A collection of protocol constants used by the ONC/RPC package. Each
constant defines one of the possible transport protocols, which can be
used for communication between ONC/RPC clients and servers.
Field Summary |
static int |
ONCRPC_HTTP
Use the HTTP application protocol for tunneling ONC remote procedure
calls. |
static int |
ONCRPC_TCP
Use the TCP protocol of the IP (Internet Protocol) suite as the
network communication protocol for doing remote procedure calls.
|
static int |
ONCRPC_UDP
Use the UDP protocol of the IP (Internet Protocol) suite as the
network communication protocol for doing remote procedure calls.
|
ONCRPC_UDP
public static final int ONCRPC_UDP
- Use the UDP protocol of the IP (Internet Protocol) suite as the
network communication protocol for doing remote procedure calls.
This is the same as the IPPROTO_UDP definition from the famous
BSD socket API.
ONCRPC_TCP
public static final int ONCRPC_TCP
- Use the TCP protocol of the IP (Internet Protocol) suite as the
network communication protocol for doing remote procedure calls.
This is the same as the IPPROTO_TCP definition from the famous
BSD socket API.
ONCRPC_HTTP
public static final int ONCRPC_HTTP
- Use the HTTP application protocol for tunneling ONC remote procedure
calls. This is definetely not similiar to any definition in the
famous BSD socket API.