added SSL

This commit is contained in:
Lorenzo Torres 2026-01-08 14:37:28 +01:00
parent d9ee2c56f2
commit 670e38a105
8 changed files with 142 additions and 22 deletions

11
network.h Normal file
View file

@ -0,0 +1,11 @@
#ifndef NETWORK_H
#define NETWORK_H
#include <stdint.h>
struct packet_header {
uint16_t size;
uint8_t type;
};
#endif