42_ft_nmap/include/thread.h
2025-05-22 17:08:26 +02:00

19 lines
269 B
C

#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);