代码拉取完成,页面将自动刷新
#include "InetAddress.h"
#include <string.h>
/*
inet_pton 本地const char* --> 网络uint
inet_ntop 网络uint --> 本地const char*
htons 本地short --> 网络short
ntohs 网络short --> 本地short
*/
InetAddress::InetAddress(uint16_t port, string ip)
{
bzero(&addr_, sizeof addr_);
addr_.sin_family = AF_INET;
addr_.sin_port = htons(port);
inet_pton(AF_INET, ip.c_str(), &addr_.sin_addr);
}
string InetAddress::toIp() const
{
char buf[64] = {0};
inet_ntop(AF_INET, &addr_.sin_addr, buf, 64);
return buf;
}
string InetAddress::toIpPort() const
{
char buf[64] = {0};
inet_ntop(AF_INET, &addr_.sin_addr, buf, 64);
int end = strlen(buf);
uint16_t port = ntohs(addr_.sin_port);
sprintf(buf+end,":%u",port);
return buf;
}
uint16_t InetAddress::toPort() const
{
return ntohs(addr_.sin_port);
}
/*
int main()
{
cout << InetAddress(22,"127.127.127.127").toIpPort() << endl;
cout << InetAddress(22,"127.127.127.127").toPort() << endl;
cout << InetAddress(22,"127.127.127.127").toIp() << endl;
}
*/
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。