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

📄 segmentana.h

📁 ipv6 隧道探测工具。是linux下使用的。 用于探测两点间是否存在隧道
💻 H
字号:
#ifndef SEGMENTANA_H#define SEGMENTANA_H#include <stdlib.h>#include <string>#include <stdio.h>#include "Interface.h"#include "Segment.h"#include "IfAna.h"using namespace std;class SegmentAna {  public :    SegmentAna();    Segment create(string,string,string,string);    Segment create(string,string);    Segment analyse(Segment);    void setIpRef(string);    void setIpRefPath(string);    void setOption(string);  private :    Segment updateTun(Segment,int); //updates or creates the tunnel, with the int value of Uncertainy(incertezza)    string my_itoa(int, int);    int my_atoi(string, int);    string calculate_ip(string);    string ipRef; //address of reference, for the spoofing analizers, to be set with the -h option by the user    string ipRefPath;//where the file "ipref" is located    string option; //determines if we used the "-v" option for parametric output};#endif

⌨️ 快捷键说明

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