以下代码摘自 Windows SDK 中的 in6addr.h:
//
// IPv6 Internet address (RFC 2553)
// This is an 'on-wire' format structure.
//
typedef struct in6_addr {
union {
UCHAR Byte[16];
USHORT Word[8];
} u;
} IN6_ADDR, *PIN6_ADDR, FAR *LPIN6_ADDR;
我不是以英语为母语的开发人员。所以请原谅我问了一个看起来很愚蠢的问题:
“这是一个'在线'格式结构”究竟是什么意思。