Port Scanner
Lightweight TCP port scanner for Linux
Loading...
Searching...
No Matches
types.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <vector>
4#include <string>
5
6#include <cstdint>
7
8using ipaddr_t = std::string;
9using port_t = uint16_t;
10using ports_t = std::vector<port_t>;
std::vector< port_t > ports_t
Vector of ports type.
Definition types.hpp:10
uint16_t port_t
Port number type.
Definition types.hpp:9
std::string ipaddr_t
IP address type.
Definition types.hpp:8