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.
|
|
|
#ifndef _IP_
|
|
|
|
#define _IP_
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <string>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#if __linux__
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#elif _WIN32
|
|
|
|
// #include <sstream>
|
|
|
|
#include <WinSock.h>
|
|
|
|
#include <ws2tcpip.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
bool isIPAddress(const string address);
|
|
|
|
bool isIPv4 (const string address);
|
|
|
|
bool isIPv6 (const string address);
|
|
|
|
string ipFromDomain(const string domain);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|