big endian little endian big endian:最高字节在地址最低位,最低字节在地址最高位,依次排列. little endian:最低字节在最低位,最高字节在最高位,反序排列. 比如将 0x1234 存入 0x0000 开始的内存. mem big endian little endian 0x0000 0x12 0x34 0x0001 0x34 0x12
九 IP选路 路由表标志: U 该路由可用. G 该路由通过路由转发与目的地址相连,无此标志表示本机与目的地址在同一网络而直接相连. H 该路由的目的地址为主机地址,无此标志表示目的地址为网络地址. D 该路由由重定向报文创建. M 该路由被重定向报文修改. 标识G区别了间接路由和直接路由.有G即为间接路由.发往直接路由的分组包含目的地址的IP和链路层地址.发往间接路由的分组包含目的地址的IP,但链路层地址为间接路由的地址.
下段摘自linux man手册. 不同环境下,backlog的含义与实现都将不同. The behaviour of the backlog parameter on TCP sockets changed with Linux 2.2. Now it specifies the queue length for completely established sockets waiting to be accepted, instead of the number of incomplete connection requests. The maximum length of the queue for incomplete sockets can be set using the tcp_max_syn_backlog sysctl. When syncookies are enabled there is no logical maximum length and this sysctl setting is ignored.