码迷,mamicode.com
首页 > 其他好文 > 详细

网络编程—常用的基本函数介绍--htonl、ntohl、htons、ntohs

时间:2020-05-07 15:36:47      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:记忆   print   com   style   sys   常用   字节   winsock   通过   

  1. htonl()函数

将主机的unsigned long值转换成为网络字节顺序(32位)(一般这几跟网络上传输的字节顺序是不通的,

分大小端),函数返回一个网络字节顺序的数字。

#include "stdafx.h"

#include<stdio.h>
#include<WinSock2.h>
#pragma comment(lib,"ws2_32.lib")


int _tmain(int argc, _TCHAR* argv[])
{
//u_long a = 0x12345678;
//u_long b = htonl(a);     //将主机的unsigned long 转为网络字节顺序(32位)
//u_long b = ntohl(a);     //将网络字节顺序(32位)转为主机字节


u_short a = 0x1234;
//u_short b = ntohs(a);//32位
u_short b = htons(a);
printf("%u\n",a);
printf("%x\n",a);
printf("%u\n",b);
printf("%x\n",b);


system("pause");
return 0;
}

 

 

 

通过转换,本来的字节顺序是1234,转换成网络顺序后成了3412.

作用相反的函数即把网络字节顺序转换成主机序列位ntohl()函数。

记忆这类函数,主要看前面的n和后面的hl。n代表网络,h代表主机host,l代表long的长度,

还有相对应的s带碧昂16位的short

 

同类的函数:ntohs(), htons() 就是转换成short类型的。

网络编程—常用的基本函数介绍--htonl、ntohl、htons、ntohs

标签:记忆   print   com   style   sys   常用   字节   winsock   通过   

原文地址:https://www.cnblogs.com/dzcheng/p/12843015.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!