Initializes the XDR data stream pointed to by the xdrs parameter.
#include <stdio.h> #include <rpc/xdr.h> void xdrstdio_create (xdrs, file, op) XDR *xdrs; FILE *file; enum xdr_op op;
The xdrstdio_create subroutine initializes the eXternal Data Representation (XDR) data stream pointed to by the xdrs parameter. The XDR stream data is written to or read from the standard input/output stream pointed to by the file parameter.
Note: The destroy routine associated with such an XDR stream calls the fflush function on the file stream, but never calls the fclose function.
This subroutine is part of Base Operating System (BOS) Runtime.
List of XDR Programming References.
eXternal Data Representation (XDR) Overview for Programming in AIX Communications Programming Concepts.
Understanding XDR Non-Filter Primitives in AIX Communications Programming Concepts.