Linux C/C++字节序转换函数

35 篇文章 0 订阅
35 篇文章 0 订阅


一、字节序转换函数

转换端口
uint16_t htons(uint16_t hostshort); //主机字节序->网络字节序
uint16_t ntohs(uint16_t netshort); //网络字节序->主机字节序

转IP
uint32_t htons(uint32_t hostlong);//主机字节序->网络字节序
uint32_t ntohs(uint32_t netlong);//网络字节序->主机字节序

二、使用步骤

在这里插入图片描述

#include<stdio.h>
#include<arpa/inet.h>

int main()
{
    //htons 转换端口
    unsigned short a=0x0102; 
    printf("%x\n",a);
    unsigned short b=htons(a);
    printf("%x\n",b);

    printf("--------------------------------\n");
    //htonl 转换IP
    char buf[4]={192,168,1,100};
    int num=*(int *)buf;
    int res=htonl(num);
    unsigned char* p=(char*)&res;
    printf("%d %d %d %d\n",*p,*(p+1),*(p+2),*(p+3));

    printf("--------------------------------\n");
    //ntohs
    unsigned char buf1[4]={1,1,168,192};
    int num1=*(int*)buf1;
    int res1=ntohl(num1);
    unsigned char* p1=(unsigned char*)&res1;
    printf("%d %d %d %d\n",*p1,*(p1+1),*(p1+2),*(p1+3));

    printf("--------------------------------\n");
    //ntohl
    unsigned int c=0x12345678; 
    printf("%x\n",c);
    unsigned int d=htonl(c);
    printf("%x\n",d);

    return 0;
}

总结

本节主要介绍了字节序转换函数,以便在实际开发中使用。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值