add: improved print

This commit is contained in:
2025-10-30 10:38:15 -05:00
parent 8744d4490b
commit e2a082a5e1
2 changed files with 17 additions and 6 deletions

8
src/host.h Normal file
View File

@@ -0,0 +1,8 @@
#pragma once
#include <netinet/in.h>
struct host {
char ip[INET_ADDRSTRLEN];
char *hostname;
};