11 lines
234 B
C
11 lines
234 B
C
#ifndef INFO_H
|
|
#define INFO_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#define SERVER_HELLO_PACKET_SIZE 17 // 1 byte version + 16 byte identifier
|
|
const uint8_t SERVER_INFO_VERSION = 1;
|
|
const char SERVER_INFO_IDENTIFIER[16] = "EXAMPLE_SERVER\0";
|
|
|
|
#endif
|