You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Darwinism/Rpc/MessageProtocol/reply_stat.vb

18 lines
503 B

Namespace Rpc.MessageProtocol
''' <summary>
''' 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
''' </summary>
Public Enum reply_stat As Integer
''' <summary>
''' the message was accepted
''' </summary>
MSG_ACCEPTED = 0
''' <summary>
''' the message was rejected
''' </summary>
MSG_DENIED = 1
End Enum
End Namespace