Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040 #include "cxutils/networking/ipaddress.h"
00041 #include <cstdio>
00042
00043 using namespace CxUtils;
00044
00045 IPAddress::IPAddress() {}
00046
00047 IPAddress::~IPAddress() {}
00048
00049
00055 bool IPAddress::IsIP4(const std::string& address)
00056 {
00057 int a, b, c, d;
00058 if(sscanf(address.c_str(), "%d.%d.%d.%d", &a, &b, &c, &d) == 4 &&
00059 a >= 0 && a <= 255 &&
00060 b >= 0 && b <= 255 &&
00061 c >= 0 && c <= 255 &&
00062 d >= 0 && d <= 255)
00063 {
00064 return true;
00065 }
00066
00067 return false;
00068 }
00069
00070
00076 bool IPAddress::IsIP6(const std::string& address)
00077 {
00078 int a, b, c, d, e, f;
00079 if((sscanf(address.c_str(), "%d.%d.%d.%d.%d.%d", &a, &b, &c, &d, &e, &f) == 6 ||
00080 sscanf(address.c_str(), "%d:%d:%d:%d:%d:%d", &a, &b, &c, &d, &e, &f) == 6)&&
00081 a >= 0 && a <= 255 &&
00082 b >= 0 && b <= 255 &&
00083 c >= 0 && c <= 255 &&
00084 d >= 0 && d <= 255 &&
00085 e >= 0 && e <= 255 &&
00086 f >= 0 && f <= 255 )
00087 {
00088 return true;
00089 }
00090
00091 return false;
00092 }
00093
00094