Deleted Added
full compact
rpc.3 (131539) rpc.3 (231564)
1.\" @(#)rpc.3n 1.31 93/08/31 SMI; from SVr4
2.\" Copyright 1989 AT&T
3.\" $NetBSD: rpc.3,v 1.10 2000/06/02 23:11:12 fvdl Exp $
1.\" @(#)rpc.3n 1.31 93/08/31 SMI; from SVr4
2.\" Copyright 1989 AT&T
3.\" $NetBSD: rpc.3,v 1.10 2000/06/02 23:11:12 fvdl Exp $
4.\" $FreeBSD: head/lib/libc/rpc/rpc.3 131539 2004-07-03 22:30:10Z ru $
4.\" $FreeBSD: head/lib/libc/rpc/rpc.3 231564 2012-02-12 18:29:56Z ed $
5.Dd May 7, 1993
6.Dt RPC 3
7.Os
8.Sh NAME
9.Nm rpc
10.Nd library routines for remote procedure calls
11.Sh LIBRARY
12.Lb libc

--- 101 unchanged lines hidden (view full) ---

114The transports are tried in left to right order in the
115.Ev NETPATH
116variable or in top to down order in the
117.Pa /etc/netconfig
118file.
119.Sh Derived Types
120The derived types used in the RPC interfaces are defined as follows:
121.Bd -literal
5.Dd May 7, 1993
6.Dt RPC 3
7.Os
8.Sh NAME
9.Nm rpc
10.Nd library routines for remote procedure calls
11.Sh LIBRARY
12.Lb libc

--- 101 unchanged lines hidden (view full) ---

114The transports are tried in left to right order in the
115.Ev NETPATH
116variable or in top to down order in the
117.Pa /etc/netconfig
118file.
119.Sh Derived Types
120The derived types used in the RPC interfaces are defined as follows:
121.Bd -literal
122 typedef u_int32_t rpcprog_t;
123 typedef u_int32_t rpcvers_t;
124 typedef u_int32_t rpcproc_t;
125 typedef u_int32_t rpcprot_t;
126 typedef u_int32_t rpcport_t;
127 typedef int32_t rpc_inline_t;
122 typedef uint32_t rpcprog_t;
123 typedef uint32_t rpcvers_t;
124 typedef uint32_t rpcproc_t;
125 typedef uint32_t rpcprot_t;
126 typedef uint32_t rpcport_t;
127 typedef int32_t rpc_inline_t;
128.Ed
129.Sh "Data Structures"
130Some of the data structures used by the
131RPC package are shown below.
132.Sh "The AUTH Structure"
133.Bd -literal
134/*
135 * Authentication info. Opaque to client.

--- 382 unchanged lines hidden ---
128.Ed
129.Sh "Data Structures"
130Some of the data structures used by the
131RPC package are shown below.
132.Sh "The AUTH Structure"
133.Bd -literal
134/*
135 * Authentication info. Opaque to client.

--- 382 unchanged lines hidden ---