Namespace Rpc.MessageProtocol ''' ''' A reply to a call message can take on two forms: the message was either accepted or rejected. ''' http://tools.ietf.org/html/rfc5531#section-9 ''' Public Enum reply_stat As Integer ''' ''' the message was accepted ''' MSG_ACCEPTED = 0 ''' ''' the message was rejected ''' MSG_DENIED = 1 End Enum End Namespace