8 lines
245 B
C++
8 lines
245 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); |