Namespace Rpc.MessageProtocol
'''
''' Given that a call message was accepted, the following is the status of an attempt to call a remote procedure.
''' http://tools.ietf.org/html/rfc5531#section-9
'''
Public Enum accept_stat As Integer
'''
''' RPC executed successfully
'''
SUCCESS = 0
'''
''' remote hasn't exported program
'''
PROG_UNAVAIL = 1
'''
''' remote can't support version #
'''
PROG_MISMATCH = 2
'''
''' program can't support procedure
'''
PROC_UNAVAIL = 3
'''
''' procedure can't decode params
'''
GARBAGE_ARGS = 4
'''
''' e.g. memory allocation failure
'''
SYSTEM_ERR = 5
End Enum
End Namespace