Simple TCP socket library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
socket/lib/ip.hpp

20 lines
334 B

1 year ago
#ifndef _IP_
#define _IP_
#include <iostream>
#include <string>
#include <string.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <unistd.h>
using namespace std;
bool isIPAddress(const string address);
bool isIPv4 (const string address);
bool isIPv6 (const string address);
string ipFromDomain(const string domain);
#endif