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/BindingProtocols/Protocol.vb

18 lines
433 B

Namespace Rpc.BindingProtocols
''' <summary>
''' constants of port mapper protocol
''' http://tools.ietf.org/html/rfc1833#section-3.1
''' </summary>
Public Enum Protocol As Integer
''' <summary>
''' protocol number for TCP/IP
''' </summary>
TCP = 6
''' <summary>
''' protocol number for UDP/IP
''' </summary>
UDP = 17
End Enum
End Namespace