source: flair-src/trunk/lib/FlairCore/src/unexported/communication.h@ 456

Last change on this file since 456 was 442, checked in by Sanahuja Guillaume, 3 years ago

update buffering

File size: 647 bytes
Line 
1// %flair:license{
2// This file is part of the Flair framework distributed under the
3// CECILL-C License, Version 1.0.
4// %flair:license}
5#ifndef COMMUNICATION_H
6#define COMMUNICATION_H
7
8// messages data socket
9#define XML_HEADER 0x3c
10#define ZLIB_HEADER 0x78
11#define WATCHDOG_HEADER 0x01
12#define DATA_LITTLE_ENDIAN 0x02
13#define DATA_BIG_ENDIAN 0x03
14#define CLOSING_CONNECTION 0x04
15#define MULTIPLE_DATA_LITTLE_ENDIAN 0x05
16#define MULTIPLE_DATA_BIG_ENDIAN 0x06
17
18//messages file socket
19#define START_SENDING_FILES 0x10
20#define FILE_INFO_LITTLE_ENDIAN 0x11
21#define FILE_INFO_BIG_ENDIAN 0x12
22#define END_SENDING_FILES 0x13
23
24#endif // COMMUNICATION_H
Note: See TracBrowser for help on using the repository browser.