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

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

correction bug logs non fonctionnels

File size: 568 bytes
RevLine 
[2]1// %flair:license{
[15]2// This file is part of the Flair framework distributed under the
3// CECILL-C License, Version 1.0.
[2]4// %flair:license}
5#ifndef COMMUNICATION_H
6#define COMMUNICATION_H
7
[234]8// messages data socket
[2]9#define XML_HEADER 0x3c
10#define ZLIB_HEADER 0x78
11#define WATCHDOG_HEADER 0x01
[253]12#define DATA_LITTLE_ENDIAN 0x02
13#define DATA_BIG_ENDIAN 0x03
[247]14#define CLOSING_CONNECTION 0x04
[2]15
[247]16//messages file socket
[234]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
[2]21
22#endif // COMMUNICATION_H
Note: See TracBrowser for help on using the repository browser.