Difference between revisions of "NetMsgTypes"

From BRL-CAD
(NetMsg MsgTypes)
(NetMsg MsgTypes)
Line 58: Line 58:
 
!align="left"|Description
 
!align="left"|Description
 
|-
 
|-
|width="70"|0
+
|width="70"|0x0050
 
|width="70"|[[Failure]]
 
|width="70"|[[Failure]]
 
|Uses [[GenericOneByteMsg|Generic One Byte Msg]]  
 
|Uses [[GenericOneByteMsg|Generic One Byte Msg]]  
 
|-
 
|-
|width="70"|5
+
|width="70"|0x0051
 
|width="70"|[[Success]]
 
|width="70"|[[Success]]
|
+
|Uses [[GenericOneByteMsg|Generic One Byte Msg]]
 
|-
 
|-
|width="70"|100
+
|width="70"|0x0100
 
|width="70"|[[RemHostNameSET]]
 
|width="70"|[[RemHostNameSET]]
 
|
 
|
 
|-
 
|-
|width="70"|150
+
|width="70"|0x0150
 
|width="70"|[[DisconnectREQ]]
 
|width="70"|[[DisconnectREQ]]
 
|
 
|
 
|-
 
|-
|width="70"|200
+
|width="70"|0x0200
 
|width="70"|[[NewHostOnNet]]
 
|width="70"|[[NewHostOnNet]]
 
|
 
|
 
|-
 
|-
|width="70"|250
+
|width="70"|0x0250
 
|width="70"|[[FullHostListREQ]]*
 
|width="70"|[[FullHostListREQ]]*
 
|
 
|
 
|-
 
|-
|width="70"|270
+
|width="70"|0x0255
 
|width="70"|[[FullHostList]]*
 
|width="70"|[[FullHostList]]*
 
|
 
|
 
|-
 
|-
|width="70"|300
+
|width="70"|0x0300
 
|width="70"|[[NewSessionREQ]]*
 
|width="70"|[[NewSessionREQ]]*
 
|
 
|
 
|-
 
|-
|width="70"|305
+
|width="70"|0x0305
 
|width="70"|[[NewSession]]*
 
|width="70"|[[NewSession]]*
 
|
 
|
 
|-
 
|-
|width="70"|400
+
|width="70"|0x0310
 +
|width="70"|[[LogoutSession]]
 +
|
 +
|-
 +
|width="70"|0x0400
 
|width="70"|[[GeometryREQ]]
 
|width="70"|[[GeometryREQ]]
 
|
 
|
 
|-
 
|-
|width="70"|405
+
|width="70"|0x0405
 
|width="70"|[[GeometryMANIFEST]]
 
|width="70"|[[GeometryMANIFEST]]
 
|
 
|
 
|-
 
|-
|width="70"|410
+
|width="70"|0x0410
 
|width="70"|[[GeometryCHUNK]]
 
|width="70"|[[GeometryCHUNK]]
 
|
 
|
 
|}
 
|}

Revision as of 08:34, 21 September 2010

Design icon.png This page contains the design document for an enhancement or feature. The design should be considered a work in progress and may not represent the final design. As this is a collaborative design, contributions and participation from other developers and users is encouraged. Use the discussion page for providing comments and suggestions.


Common Header Byte Format

All NetMsgs will contain a uniform header:


Element Length Notes
Magic1 int16 (2 Bytes) Always 0x41FE
Magic2 int16 (2 Bytes) Always 0x5309
MessageLength int32 (4 bytes)
MsgType int16 (2 bytes)
MessageUUID String (Variable bytes)
HasRegardingUUID Boolean (1 byte)
RegardingMessageUUID String (Variable bytes)

NetMsg Generic Templates

The GSNet Protocol provides several Template classes to be used or extended from.

NetMsg MsgTypes

Some NetMsgs will need to have custom bodies. Here is a list of NetMsgs, their related MsgTypes, and links to details on that specific NetMsg:


MsgTypeID Name Description
0x0050 Failure Uses Generic One Byte Msg
0x0051 Success Uses Generic One Byte Msg
0x0100 RemHostNameSET
0x0150 DisconnectREQ
0x0200 NewHostOnNet
0x0250 FullHostListREQ*
0x0255 FullHostList*
0x0300 NewSessionREQ*
0x0305 NewSession*
0x0310 LogoutSession
0x0400 GeometryREQ
0x0405 GeometryMANIFEST
0x0410 GeometryCHUNK