⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 registryana.h

📁 ipv6 隧道探测工具。是linux下使用的。 用于探测两点间是否存在隧道
💻 H
字号:
#ifndef REGISTRYANA_H#define REGISTRYANA_H#include <fstream>#include <iostream>#include <cstdlib>#include <cstring>#include "Segment.h"using namespace std;// The macro __GNUG__ is set for GNU C++#ifdef __GNUG__#include <unistd.h>		// for access()#else#include <io.h>         // for _access()#endifclass RegistryAna {  public :    RegistryAna();    int searchDB(Segment);    void setDbPath(string);  private :    int searcher(string);    string dbPath;};#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -