Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1266740
  • 博文数量: 125
  • 博客积分: 4372
  • 博客等级: 上校
  • 技术积分: 1055
  • 用 户 组: 普通用户
  • 注册时间: 2006-10-12 09:53
文章分类

全部博文(125)

文章存档

2019年(3)

2018年(2)

2017年(1)

2016年(2)

2015年(4)

2014年(11)

2013年(5)

2012年(4)

2011年(12)

2010年(10)

2009年(17)

2008年(17)

2007年(25)

2006年(12)

分类:

2009-12-10 16:18:13

简而言之:
Big endian machine: It thinks the first byte it reads is the biggest.
Little endian machine: It thinks the first byte it reads is the littlest.
举个例子,从内存地址0x0000开始有以下数据
 0x0000     0x12
 0x0001     0x34
 0x0002     0xab
 0x0003     0xcd
如果我们去读取一个地址为0x0000的四个字节变量,若字节序为big-endian,则读出
结果为0x1234abcd;若字节序位little-endian,则读出结果为0xcdab3412.
如果我们将0x1234abcd写入到以0x0000开始的内存中,则结果为
                big-endian     little-endian
0x0000     0x12              0xcd
0x0001     0x23              0xab
0x0002     0xab              0x34
0x0003     0xcd              0x12
x86系列CPU都是little-endian的字节序.
 
所有网络协议也都是采用big endian的方式来传输数据的。所以有时我们也会把big endian方式称之为网络字节序。当两台采用不同字节序的主机通信时,在发送数据之前都必须经过字节序的转换成为网络字节序后再进行传输。
 
X86用 低地址空间存储数据的低位的。
这与Motorola的CPU是相反的。
现在网络上传输的数据的标准顺序为大端字节序。所以,X86就要进行转换。
转换非常简单:

#include <netinet/in.h> /* 用到的头文件 */

unsigned long htonl ( unsigned long hostlong );       /* 主机转网络 */
unsigned short htons ( unsigned short hostshort ); /* 主机转网络 */
unsigned long ntohl ( unsigned long netlong );        /* 网络转主机 */
unsigned short ntohs ( unsigned short netshort );   /*网络转主机 */


 
 
阅读(2107) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~