typedef unsigned short int uint16;網絡
typedef unsigned long int uint32;函數
// 短整型大小端互換ui
#define BigLittleSwap16(A) ((((uint16)(A) & 0xff00) >> 8) | spa
(((uint16)(A) & 0x00ff) << 8))it
// 長整型大小端互換io
#define BigLittleSwap32(A) ((((uint32)(A) & 0xff000000) >> 24) | nio
(((uint32)(A) & 0x00ff0000) >> 8) | im
(((uint32)(A) & 0x0000ff00) << 8) | 數據
(((uint32)(A) & 0x000000ff) << 24))di
// 本機大端返回1,小端返回0
int checkCPUendian()
{
union{
unsigned long int i;
unsigned char s[4];
}c;
c.i = 0x12345678;
return (0x12 == c.s[0]);
}
// 模擬htonl函數,本機字節序轉網絡字節序
unsigned long int t_htonl(unsigned long int h)
{
// 若本機爲大端,與網絡字節序同,直接返回
// 若本機爲小端,轉換成大端再返回
return checkCPUendian() ? h : BigLittleSwap32(h);
}
// 模擬ntohl函數,網絡字節序轉本機字節序
unsigned long int t_ntohl(unsigned long int n)
{
// 若本機爲大端,與網絡字節序同,直接返回
// 若本機爲小端,網絡數據轉換成小端再返回
return checkCPUendian() ? n : BigLittleSwap32(n);
}
// 模擬htons函數,本機字節序轉網絡字節序
unsigned short int t_htons(unsigned short int h)
{
// 若本機爲大端,與網絡字節序同,直接返回
// 若本機爲小端,轉換成大端再返回
return checkCPUendian() ? h : BigLittleSwap16(h);
}
// 模擬ntohs函數,網絡字節序轉本機字節序
unsigned short int t_ntohs(unsigned short int n)
{
// 若本機爲大端,與網絡字節序同,直接返回
// 若本機爲小端,網絡數據轉換成小端再返回
return checkCPUendian() ? n : BigLittleSwap16(n);
}