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

📄 ip6.h

📁 这个源码是UNIX网络编程卷1一书中的事例源代码
💻 H
字号:
struct ip6hdr {    union {	struct ip6hdrctl {	    u_int32_t ctl6_flow;	/* 24 bits of flow-ID */	    u_int16_t ctl6_plen;        /* payload length */	    u_int8_t  ctl6_nxt;         /* next header */	    u_int8_t  ctl6_hlim;        /* hop limit */	} un_ctl6;	u_int8_t un_vfc;		/* 4 bits version, 4 bits reserved */    } ip6_ctlun;    struct in6_addr ip6_src;		/* source address */    struct in6_addr ip6_dst;		/* destination address */};#define ip6_vfc		ip6_ctlun.un_vfc#define ip6_flow	ip6_ctlun.un_ctl6.ctl6_flow#define	ip6_plen	ip6_ctlun.un_ctl6.ctl6_plen#define	ip6_nxt		ip6_ctlun.un_ctl6.ctl6_nxt#define	ip6_hlim	ip6_ctlun.un_ctl6.ctl6_hlim#define	ip6_hops	ip6_ctlun.un_ctl6.ctl6_hlim

⌨️ 快捷键说明

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