bootp_packet.h

来自「klibc精简化的c程序库」· C头文件 代码 · 共 32 行

H
32
字号
#ifndef BOOTP_PACKET_H#define BOOTP_PACKET_H#include <sys/uio.h>struct netdev;/* packet ops */#define BOOTP_REQUEST	1#define BOOTP_REPLY	2/* your basic bootp packet */struct bootp_hdr {	uint8_t	 op;	uint8_t	 htype;	uint8_t	 hlen;	uint8_t	 hops;	uint32_t xid;	uint16_t secs;	uint16_t flags;	uint32_t ciaddr;	uint32_t yiaddr;	uint32_t siaddr;	uint32_t giaddr;	uint8_t	 chaddr[16];	char	 server_name[64];	char	 boot_file[128];	/* 312 bytes of extensions */};#endif

⌨️ 快捷键说明

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