19 lines
269 B
C
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);
|