7 lines
215 B
C++
7 lines
215 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
bool check_ipv4(const std::string& ip);
|
|
bool check_port(long long port);
|
|
bool check_ip_netmask_gateway(const std::string& ip, const std::string& netmask, const std::string& gateway); |