Skip Navigation Links | |
Exit Print View | |
ONC+ Developer's Guide Oracle Solaris 11.1 Information Library |
1. Introduction to ONC+ Technologies
4. Programmer's Interface to RPC
5. Advanced RPC Programming Techniques
6. Porting From TS-RPC to TI-RPC
7. Multithreaded RPC Programming
8. Extensions to the Oracle Solaris RPC Library
A process that remotely accesses resources of a computer server
A client process data structure that represents the binding of the client to a particular server's RPC program.
Characteristic of the model of interconnection in which communication takes place without first establishing a connection. See datagram transport.
Characteristic of the model of interconnection in which communication proceeds through three well-defined phases: connection establishment, data transfer, and connection release. See stream transport.
A message and the Internet source and destination addresses that are associated with it. Datagram transports have less overhead than connection-oriented transports but are considered less reliable. Data transmissions are limited by buffer size.
To convert data from XDR format to a machine-specific representation.
An abstraction used by the service libraries to refer to a file or a file-like object such as a socket.
A computer system that is accessed by computers and/or workstations at remote locations. Usually the host contains the data, but in networks, the remote locations can be the host and provide information to the network.
Characteristic of an interface in which the library or call automatically creates threads.
Characteristic of an interface that can be called in a threaded environment. An MT-safe interface can be invoked concurrently for multiple threads.
A process that makes remote procedure calls to services.
A network device that manages resources and supplies services to a client.
A collection of one or more remote service programs.
A service that verifies activity on a remote system. A computer sends a small program to a host and notes time on its return path.
A program that implements one or more remote procedures.
A C-like programming language translated by the rpcgen compiler. RPCL is a superset of XDR Language.
The network services library, libnsl, specified to the link editor at compile time. Also known as the RPC package.
The message-passing protocol that is the basis of the RPC package.
A standard for machine-independent data structures. See RPC language.
To convert data from a machine representation to XDR format.
A network device that manages resources and supplies services to a client.
The fourth layer of the Open Systems Interconnection (OSI) Reference Model.
An abstraction used by the RPC libraries to refer to the transport's data structures.
Transport-independent RPC. This is the current version.
Transport-specific RPC. This is an older version. It is still supported, but TI-RPC is preferred.
A hexadecimal address of a type of network, such as TCP/IP, that configures the port monitor to check for print requests from print clients on a network.
An apparent connection between processes that is facilitated by transmission control protocol (TCP). A virtual circuit enables applications to "talk" to each other as if they had a physical circuit.
A data description language and data representation protocol.