在我們的組織,我們收到每日黑名單(更大,因爲這僅僅是一個片斷)的格式如下:意外的結果
172.44.12.0
198.168.1.5
10.10。 0.0
192.168.78.6
192.168.22.22
111.111.0.0
222.222.0.0
12.12.12.12
當運行該程序的代碼編譯後我得到:
我使用C++在Linux/Unix環境。
到目前爲止,我只是吐出來確保我的格式正確。
該文件的名稱是blacklist.txt,其中包含目前上面列出的IP。我只使用cout來確保我的變量被正確定義。
#include <iostream>
#include <vector>
#include <fstream>
#include <string>
#include <netinet/in.h>
#include <stdint.h>
#include <arpa/inet.h>
using namespace std;
bool is_match(std::string &hay_stack, std::string &srcip) {
in_addr_t _ip = inet_addr(hay_stack.c_str());
in_addr_t _IP = inet_addr(srcip.c_str());
_ip = ntohl(_ip);
_IP = ntohl(_IP);
uint32_t mask=(_ip & 0x00ffffff == 0) ? 0xff000000 :
(_ip & 0x0000ffff == 0 ? 0xffff0000 : 0);
return ((_ip & mask) == (_IP & mask));
}
int main()
{
vector<std::string> lines;
lines.reserve(5000); //Assuming that the file to read can have max 5K lines
string fileName("blacklist.txt");
ifstream file;
file.open(fileName.c_str());
if(!file.is_open())
{
cerr<<"Error opening file : "<<fileName.c_str()<<endl;
return -1;
}
//Read the lines and store it in the vector
string line;
while(getline(file,line))
{
lines.push_back(line);
}
file.close();
//Dump all the lines in output
for(unsigned int i = 0; i < lines.size(); i++)
{
string h = lines[i];
string mi = "10.10.10.10";
cout<<is_match(h,mi)<<endl;
}
return 0;
}
我期待的輸出爲10.10.10.10(某種這裏主機的子網)10.10.0.0(和某種這裏子網掩碼)
我猜「面具」始終評估爲零。 – 2012-03-02 20:23:53
您有特定的問題嗎?或者我們應該爲您解決這個問題? – PlasmaHH 2012-03-02 20:24:12
即使你沒有提供任何問題,我還是會爲+1做準備:提供一個完整的程序(http://sscce.org),並使用正確的方式讀取輸入的行。 – 2012-03-02 20:28:52