1. NAME

xdr_inline_decode - Retrieve XDR data to decode

2. SYNOPSIS

__be32 * xdr_inline_decode(struct xdr_stream *  xdr , size_t  nbytes );

3. ARGUMENTS

xdr
    pointer to xdr_stream struct

nbytes
    number of bytes of data to decode

4. DESCRIPTION

Check if the input buffer is long enough to enable us to decode AqnbytesAq more bytes of data starting at the current position. If so return the current pointer, then update the current pointer position.

5. COPYRIGHT