feature: start to implement responses

This commit is contained in:
0x35c
2025-05-22 17:08:26 +02:00
parent 1361cd9f9c
commit 84d5960900
10 changed files with 224 additions and 23 deletions

11
include/host.h Normal file
View File

@ -0,0 +1,11 @@
#pragma once
#include <limits.h>
#include <linux/if.h>
#include <netinet/in.h>
struct host {
char name[HOST_NAME_MAX];
char ip[INET_ADDRSTRLEN];
char interface[IFNAMSIZ];
};