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

18
include/thread.h Normal file
View File

@ -0,0 +1,18 @@
#pragma once
#include <stdint.h>
#include "host.h"
#include "response.h"
#include "scan.h"
struct thread {
uint16_t port_start;
uint16_t port_end;
char *dest_addr;
e_scantype type;
struct host host;
struct response *responses;
};
void *routine(void *p_data);