asfur/network.h
2026-01-08 14:37:28 +01:00

11 lines
123 B
C

#ifndef NETWORK_H
#define NETWORK_H
#include <stdint.h>
struct packet_header {
uint16_t size;
uint8_t type;
};
#endif