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.
21 lines
456 B
21 lines
456 B
Imports Xdr
|
|
|
|
Namespace Rpc.MessageProtocol
|
|
''' <summary>
|
|
''' RPC message
|
|
''' http://tools.ietf.org/html/rfc5531#section-9
|
|
''' </summary>
|
|
Public Class rpc_msg
|
|
''' <summary>
|
|
''' transaction identifier
|
|
''' </summary>
|
|
<Order(0)>
|
|
Public xid As UInteger
|
|
''' <summary>
|
|
''' message body
|
|
''' </summary>
|
|
<Order(1)>
|
|
Public body As body
|
|
End Class
|
|
End Namespace
|