ip.h

来自「开源的BIOS启动软件」· C头文件 代码 · 共 37 行

H
37
字号
/* * 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 + =
减小字号Ctrl + -
显示快捷键?