Files
miniboinc/include/server/info.h
2026-01-15 09:05:19 +01:00

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