Imports Xdr
Namespace Rpc.MessageProtocol
'''
''' Reply to an RPC call that was accepted by the server
''' http://tools.ietf.org/html/rfc5531#section-9
'''
Public Class accepted_reply
'''
''' authentication verifier that the server generates in order to validate itself to the client
'''
Public verf As opaque_auth
'''
''' the reply data.
'''
Public reply_data As reply_data_union
'''
''' the reply data
'''
Public Class reply_data_union
'''
''' accept state
'''
<[Case](accept_stat.SUCCESS)> ' opaque results[0]; - procedure-specific results start here
<[Case](accept_stat.PROG_UNAVAIL), [Case](accept_stat.PROC_UNAVAIL), [Case](accept_stat.GARBAGE_ARGS), [Case](accept_stat.SYSTEM_ERR)> ' void
Public stat As accept_stat
'''
''' the lowest and highest version numbers of the remote program supported by the server
'''
<[Case](accept_stat.PROG_MISMATCH)>
Public mismatch_info As mismatch_info
End Class
End Class
End Namespace