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

📄 tun_dev.h

📁 Adhoc无线网络路由协议源码
💻 H
字号:
#ifndef TUN_DEV_H#define TUN_DEV_H#define TUN_DEV_IP "127.0.0.2"	/* ip address for the tun device */#define TUN_DEV_NAME "tun"   /* name of the tun interface *//* * tun_init(): * 	prepare the tun device and return the handle (file descriptor) */int tun_init();/* * tun_in(fd, buf): *	read the next packet from fd into buf, return the packet length */int tun_in(int fd, u_char *buf);#endif

⌨️ 快捷键说明

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