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

📄 ip.h

📁 开源的BIOS启动软件
💻 H
字号:
/* * include/bios/ip.h * * Author: Russsell King */#ifndef BIOS_IP_H#define BIOS_IP_H#ifndef INADDR_ANY#define INADDR_ANY	(0xffffffffUL)#endifstruct sin {	u32	sin_addr;	u16	sin_port;};struct iphdr {	u8	ip_ihl:4;	u8	ip_ver:4;	u8	ip_tos;	u16	ip_len;	u16	ip_id;	u16	ip_frag;	u8	ip_ttl;	u8	ip_proto;	u16	ip_check;	u32	ip_source;	u32	ip_dest;};extern char *in_ntoa(u32 addr);extern int ip_send(struct netdev *nd, int protocol, u32 from, u32 to, struct buflist *data);#endif

⌨️ 快捷键说明

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