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

Last change on this file since 437 was 253, checked in by Sanahuja Guillaume, 6 years ago

correction bug logs non fonctionnels

File size: 568 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
16//messages file socket
17#define START_SENDING_FILES 0x10
18#define FILE_INFO_LITTLE_ENDIAN 0x11
19#define FILE_INFO_BIG_ENDIAN 0x12
20#define END_SENDING_FILES 0x13
21
22#endif // COMMUNICATION_H
Note: See TracBrowser for help on using the repository browser.