mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-08 17:42:12 +03:00
Obsolete RPC implementation in libc.
This commit is contained in:
@@ -125,8 +125,8 @@ xdr_callmsg (XDR *xdrs, struct rpc_msg *cmsg)
|
||||
buf = XDR_INLINE (xdrs, RNDUP (oa->oa_length));
|
||||
if (buf == NULL)
|
||||
{
|
||||
if (INTUSE(xdr_opaque) (xdrs, oa->oa_base,
|
||||
oa->oa_length) == FALSE)
|
||||
if (xdr_opaque (xdrs, oa->oa_base,
|
||||
oa->oa_length) == FALSE)
|
||||
return FALSE;
|
||||
}
|
||||
else
|
||||
@@ -142,8 +142,8 @@ xdr_callmsg (XDR *xdrs, struct rpc_msg *cmsg)
|
||||
buf = XDR_INLINE (xdrs, 2 * BYTES_PER_XDR_UNIT);
|
||||
if (buf == NULL)
|
||||
{
|
||||
if (INTUSE(xdr_enum) (xdrs, &oa->oa_flavor) == FALSE ||
|
||||
INTUSE(xdr_u_int) (xdrs, &oa->oa_length) == FALSE)
|
||||
if (xdr_enum (xdrs, &oa->oa_flavor) == FALSE ||
|
||||
xdr_u_int (xdrs, &oa->oa_length) == FALSE)
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
@@ -165,8 +165,8 @@ xdr_callmsg (XDR *xdrs, struct rpc_msg *cmsg)
|
||||
buf = XDR_INLINE (xdrs, RNDUP (oa->oa_length));
|
||||
if (buf == NULL)
|
||||
{
|
||||
if (INTUSE(xdr_opaque) (xdrs, oa->oa_base,
|
||||
oa->oa_length) == FALSE)
|
||||
if (xdr_opaque (xdrs, oa->oa_base,
|
||||
oa->oa_length) == FALSE)
|
||||
return FALSE;
|
||||
}
|
||||
else
|
||||
@@ -182,16 +182,16 @@ xdr_callmsg (XDR *xdrs, struct rpc_msg *cmsg)
|
||||
}
|
||||
}
|
||||
if (
|
||||
INTUSE(xdr_u_long) (xdrs, &(cmsg->rm_xid)) &&
|
||||
INTUSE(xdr_enum) (xdrs, (enum_t *) & (cmsg->rm_direction)) &&
|
||||
xdr_u_long (xdrs, &(cmsg->rm_xid)) &&
|
||||
xdr_enum (xdrs, (enum_t *) & (cmsg->rm_direction)) &&
|
||||
(cmsg->rm_direction == CALL) &&
|
||||
INTUSE(xdr_u_long) (xdrs, &(cmsg->rm_call.cb_rpcvers)) &&
|
||||
xdr_u_long (xdrs, &(cmsg->rm_call.cb_rpcvers)) &&
|
||||
(cmsg->rm_call.cb_rpcvers == RPC_MSG_VERSION) &&
|
||||
INTUSE(xdr_u_long) (xdrs, &(cmsg->rm_call.cb_prog)) &&
|
||||
INTUSE(xdr_u_long) (xdrs, &(cmsg->rm_call.cb_vers)) &&
|
||||
INTUSE(xdr_u_long) (xdrs, &(cmsg->rm_call.cb_proc)) &&
|
||||
INTUSE(xdr_opaque_auth) (xdrs, &(cmsg->rm_call.cb_cred)))
|
||||
return INTUSE(xdr_opaque_auth) (xdrs, &(cmsg->rm_call.cb_verf));
|
||||
xdr_u_long (xdrs, &(cmsg->rm_call.cb_prog)) &&
|
||||
xdr_u_long (xdrs, &(cmsg->rm_call.cb_vers)) &&
|
||||
xdr_u_long (xdrs, &(cmsg->rm_call.cb_proc)) &&
|
||||
xdr_opaque_auth (xdrs, &(cmsg->rm_call.cb_cred)))
|
||||
return xdr_opaque_auth (xdrs, &(cmsg->rm_call.cb_verf));
|
||||
return FALSE;
|
||||
}
|
||||
INTDEF(xdr_callmsg)
|
||||
libc_hidden_nolink (xdr_callmsg, GLIBC_2_0)
|
||||
|
Reference in New Issue
Block a user