mirror of
https://github.com/CPunch/Laika.git
synced 2024-11-14 01:40:05 +00:00
13 lines
217 B
C
13 lines
217 B
C
#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 |