16 lines
313 B
C
16 lines
313 B
C
/*
|
|
* @file ft_protocol.h
|
|
*
|
|
* @date Mar 14, 2017
|
|
* @author Andrey Belomutskiy, (c) 2012-2017
|
|
*/
|
|
|
|
#ifndef CONSOLE_FL_BINARY_FT_PROTOCOL_H_
|
|
#define CONSOLE_FL_BINARY_FT_PROTOCOL_H_
|
|
|
|
#define START_TAG 0xAA
|
|
#define MAGIC_TAG 0xBB
|
|
#define END_TAG 0xCC
|
|
|
|
#endif /* CONSOLE_FL_BINARY_FT_PROTOCOL_H_ */
|