1
0
mirror of https://github.com/CPunch/Laika.git synced 2024-09-20 10:38:20 +00:00
Laika/lib/include/lpacket.h

13 lines
217 B
C
Raw Normal View History

#ifndef LAIKA_PACKET_H
#define LAIKA_PACKET_H
#define LAIKA_MAGIC "LAI\x12"
#define LAIKA_MAGICLEN 4
typedef enum {
LAIKAPKT_HANDSHAKE_REQ,
LAIKAPKT_HANDSHAKE_RES,
LAIKAPKT_MAXNONE
} LAIKAPKT_ID;
#endif