feature: start to implement responses
This commit is contained in:
18
include/thread.h
Normal file
18
include/thread.h
Normal 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);
|
Reference in New Issue
Block a user