{
    "content": [
        {
            "type": "text",
            "text": "# RPC_XDR (info)\n\n## NAME\n\nxdracceptedreply, xdrauthsysparms, xdrcallhdr, xdrcallmsg, xdropaqueauth, xdrrejectedreply, xdrreplymsg -- XDR library routines for remote procedure calls\n\n## SYNOPSIS\n\n#include <rpc/rpc.h>\nboolt\nxdracceptedreply(XDR *xdrs, struct acceptedreply *ar);\nboolt\nxdrauthsysparms(XDR *xdrs, struct authsysparms *aupp);\nboolt\nxdrcallhdr(XDR *xdrs, struct rpcmsg *chdr);\nboolt\nxdrcallmsg(XDR *xdrs, struct rpcmsg *cmsg);\nboolt\nxdropaqueauth(XDR *xdrs, struct opaqueauth *ap);\nboolt\nxdrrejectedreply(XDR *xdrs, struct rejectedreply *rr);\nboolt\nxdrreplymsg(XDR *xdrs, struct rpcmsg *rmsg);\n\n## DESCRIPTION\n\nThese routines are used for describing the RPC messages in XDR language.\nThey should normally be used by those who do not want to use the RPC\npackage directly.  These routines return TRUE if they succeed, FALSE oth-\nerwise.\n\n## Sections\n\n- **NAME**\n- **SYNOPSIS**\n- **DESCRIPTION**\n- **Routines**\n- **AVAILABILITY**\n- **SEE ALSO**\n\nUse structuredContent.sections for detailed options, examples, and full documentation.\n"
        }
    ],
    "structuredContent": {
        "command": "RPC_XDR",
        "section": "",
        "mode": "info",
        "summary": "xdracceptedreply, xdrauthsysparms, xdrcallhdr, xdrcallmsg, xdropaqueauth, xdrrejectedreply, xdrreplymsg -- XDR library routines for remote procedure calls",
        "synopsis": "#include <rpc/rpc.h>\nboolt\nxdracceptedreply(XDR *xdrs, struct acceptedreply *ar);\nboolt\nxdrauthsysparms(XDR *xdrs, struct authsysparms *aupp);\nboolt\nxdrcallhdr(XDR *xdrs, struct rpcmsg *chdr);\nboolt\nxdrcallmsg(XDR *xdrs, struct rpcmsg *cmsg);\nboolt\nxdropaqueauth(XDR *xdrs, struct opaqueauth *ap);\nboolt\nxdrrejectedreply(XDR *xdrs, struct rejectedreply *rr);\nboolt\nxdrreplymsg(XDR *xdrs, struct rpcmsg *rmsg);",
        "tldr_summary": null,
        "tldr_examples": [],
        "tldr_source": null,
        "flags": [],
        "examples": [],
        "see_also": [
            {
                "name": "rpc",
                "section": "3",
                "url": "https://www.chedong.com/phpMan.php/man/rpc/3/json"
            },
            {
                "name": "xdr",
                "section": "3",
                "url": "https://www.chedong.com/phpMan.php/man/xdr/3/json"
            }
        ],
        "section_outline": [
            {
                "name": "NAME",
                "lines": 4,
                "subsections": []
            },
            {
                "name": "SYNOPSIS",
                "lines": 23,
                "subsections": []
            },
            {
                "name": "DESCRIPTION",
                "lines": 5,
                "subsections": []
            },
            {
                "name": "Routines",
                "lines": 40,
                "subsections": []
            },
            {
                "name": "AVAILABILITY",
                "lines": 2,
                "subsections": []
            },
            {
                "name": "SEE ALSO",
                "lines": 3,
                "subsections": []
            }
        ],
        "sections": {
            "NAME": {
                "content": "xdracceptedreply, xdrauthsysparms, xdrcallhdr, xdrcallmsg,\nxdropaqueauth, xdrrejectedreply, xdrreplymsg -- XDR library routines\nfor remote procedure calls\n",
                "subsections": []
            },
            "SYNOPSIS": {
                "content": "#include <rpc/rpc.h>\n\nboolt\nxdracceptedreply(XDR *xdrs, struct acceptedreply *ar);\n\nboolt\nxdrauthsysparms(XDR *xdrs, struct authsysparms *aupp);\n\nboolt\nxdrcallhdr(XDR *xdrs, struct rpcmsg *chdr);\n\nboolt\nxdrcallmsg(XDR *xdrs, struct rpcmsg *cmsg);\n\nboolt\nxdropaqueauth(XDR *xdrs, struct opaqueauth *ap);\n\nboolt\nxdrrejectedreply(XDR *xdrs, struct rejectedreply *rr);\n\nboolt\nxdrreplymsg(XDR *xdrs, struct rpcmsg *rmsg);\n",
                "subsections": []
            },
            "DESCRIPTION": {
                "content": "These routines are used for describing the RPC messages in XDR language.\nThey should normally be used by those who do not want to use the RPC\npackage directly.  These routines return TRUE if they succeed, FALSE oth-\nerwise.\n",
                "subsections": []
            },
            "Routines": {
                "content": "See rpc(3) for the definition of the XDR data structure.\n\nxdracceptedreply()\nUsed to translate between RPC reply messages and their external\nrepresentation.  It includes the status of the RPC call in the XDR\nlanguage format.  In the case of success, it also includes the\ncall results.\n\nxdrauthsysparms()\nUsed for describing UNIX operating system credentials.  It in-\ncludes machine-name, uid, gid list, etc.\n\nxdrcallhdr()\nUsed for describing RPC call header messages.  It encodes the\nstatic part of the call message header in the XDR language format.\nIt includes information such as transaction ID, RPC version num-\nber, program and version number.\n\nxdrcallmsg()\nUsed for describing RPC call messages.  This includes all the RPC\ncall information such as transaction ID, RPC version number, pro-\ngram number, version number, authentication information, etc.\nThis is normally used by servers to determine information about\nthe client RPC call.\n\nxdropaqueauth()\nUsed for describing RPC opaque authentication information mes-\nsages.\n\nxdrrejectedreply()\nUsed for describing RPC reply messages.  It encodes the rejected\nRPC message in the XDR language format.  The message could be re-\njected either because of version number mis-match or because of\nauthentication errors.\n\nxdrreplymsg()\nUsed for describing RPC reply messages.  It translates between the\nRPC reply message and its external representation.  This reply\ncould be either an acceptance, rejection or NULL.\n",
                "subsections": []
            },
            "AVAILABILITY": {
                "content": "These functions are part of libtirpc.\n",
                "subsections": []
            },
            "SEE ALSO": {
                "content": "rpc(3), xdr(3)\n\nBSD                               May 3, 1993                              BSD",
                "subsections": []
            }
        }
    }
}