Project

General

Profile

Actions

Protocols » History » Revision 5

« Previous | Revision 5/26 (diff) | Next »
Greg Burri, 11/06/2009 04:24 PM


Protocols

There is two main protocols, one between cores and one between GUI and core. Both used protocol buffers for describing the exchanged messages.

Each data sent over the network (using TCP or UDP) are formatted like this :

<messageType:uint32><size:uint32><serializedMessage>
Where :
  • messageType is a number which determine the message type, more information in the proto files.
  • size is the size of the following serialized message.
  • serializedMessage is the data serialized by protocol buffer.

Updated by Greg Burri over 14 years ago · 5 revisions