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

📄 includes.h

📁 In this article, I will explain how to create UDP packets and then send them to a remote server thro
💻 H
字号:
#ifndef _INCLUDES_H
#define _INCLUDES_H

#include <winsock2.h> // htons() htonl() and other helper functions
#pragma comment (lib,"WS2_32.lib") 
#include <windows.h> 
#include <Iphlpapi.h>// Used to find information about the device such as default gateway and hardware addresses
#pragma comment (lib,"Iphlpapi.lib") 
#include <Pcap/pcap.h> // WinPCap
#pragma comment (lib,"wpcap.lib") // Link to pcap
#include <iostream> //sprintf()
using namespace std;

#endif

⌨️ 快捷键说明

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