第14章 UDP编程(2)_端口绑定和域名解析
2. 端口绑定和域名解析
2.1 端口绑定:SO_REUSEADDR选项
int opt = ;//1表示启用该选项
//设置为可重新使用端口,每次启动该端口时,会重新绑定端口。相当于端口被复位并被重新。
//绑定。因此,以后以最后这次绑定为准
if((ret = setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt))) < ){
perror("setsockopt error");
exit();
}
2.2 域名解析
(1)域名解析过程
(2)域名解析函数
头文件 |
#include <netdb.h> |
函数 |
struct hostent* gethostent(void); struct hostent* gethostbyname(const char* hostname); void sethostent(int stayopen); void endhostent(void); //注意get和endhostent应成对使用! |
参数 |
struct hostent{ |
功能 |
域名解析 |
备注 |
查看域名和IP映射关系:#more /etc/hosts |
(3)hostent结构体
(4)域名解析案例
//域名解析,并将结果保存在hostent结构体中
if((hptr = gethostbyname("www.google.com")) == NULL){
fprintf(stderr, "gethostbyname call failed.%s\n",
hstrerror(h_errno));
return -;
} printf("official name: %s\n", hptr->h_name); //输出正式名
for(pptr = hptr->h_aliases; *pptr != NULL; pptr++){ //输出对应各个别名
printf("\t alias: %s\n", *pptr);
} if(hptr->h_addrtype != AF_INET){ //判断是否为IPv4地址
fprintf(stderr, "Invalid address type %d\n", hptr->addrtype);
return -;
} pptr = hptr->h_addr_list;
for(; *pptr != NULL; pptr++){ //输出点分十进制的IP地址(字符串)
printf("\t address: %s\n",
inet_ntop(hptr->h_addrtype, *pptr, str, sizeof(str)));
}
【编程实验】根据域名解析出IP地址
//gethost.c
#include <netdb.h>
#include <stdio.h>
#include <stdlib.h>
#include <memory.h>
#include <string.h> int is_host(struct hostent* host, char* name)
{
//如果正式名为name,则直接返回
if(!strcmp(host->h_name, name)) return ; //查找别名为name
int i = ;
while(host->h_aliases[i] != NULL){
if(!strcmp(host->h_aliases[i], name)) return ;
i++;
}
} //根据主机名获取IP
unsigned int get_ip_by_name(char* name)
{
unsigned int ip = ;
struct hostent* host;
//遍历/etc/hosts文件,找出所有的主机名。
//每调用一次gethostent将读取文件的一行(对应一个主机)
while((host = gethostent()) != NULL){
if(is_host(host, name)){
//h_addr_list[0]中所存放在IP是网络字节序,共4个字节。
memcpy(&ip, host->h_addr_list[], );
break;
}
}
endhostent();
return ip;
} void out_addr(struct hostent* h)
{
printf("hostname: %s\n", h->h_name);
printf("addrtype: %s\n", h->h_addrtype == AF_INET ? "IPv4": "IPv6"); char ip[];
memset(ip, , sizeof(ip));
inet_ntop(h->h_addrtype, h->h_addr_list[], ip, sizeof(ip));//绑定的第1个IP地址
printf("ip address: %s\n", ip); //别名
int i = ;
while(h->h_aliases[i] != NULL){
printf("aliases: %s\n", h->h_aliases[i]);
i++;
}
} int main(int argc, char* argv[])
{
if(argc < ){
printf("usage: %s host\n", argv[]);
exit();
} struct hostent* h;
h = gethostbyname(argv[]); if(h != NULL){
out_addr(h);
}else{
printf("no %s exist\n", argv[]);
} //根据主机名,输出IP
unsigned int ipNet = get_ip_by_name(argv[]); //网络字节序IP
char ip[];
memset(ip, , sizeof(ip));
inet_ntop(AF_INET, &ipNet, ip, sizeof(ip));//绑定的第1个IP地址
printf("ip address: %s\n", ip); return ;
}
/*host文件
* [root@localhost 14.udp]# more /etc/hosts
* 127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
* 192.168.32.100 santaclaus www.5iedu.com
* ::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
*
*输出结果
[root@localhost 14.udp]# bin/gethost santaclaus
hostname: santaclaus
addrtype: IPv4
ip address: 192.168.32.100
aliases: www.5iedu.com
ip address: 192.168.32.100
[root@localhost 14.udp]# bin/gethost www.5iedu.com
hostname: santaclaus
addrtype: IPv4
ip address: 192.168.32.100
aliases: www.5iedu.com
ip address: 192.168.32.100
[root@localhost 14.udp]# bin/gethost localhost
hostname: localhost
addrtype: IPv4
ip address: 127.0.0.1
aliases: localhost.localdomain
aliases: localhost4
aliases: localhost4.localdomain4
aliases: localhost.localdomain
aliases: localhost6
aliases: localhost6.localdomain6
ip address: 127.0.0.1
*/
第14章 UDP编程(2)_端口绑定和域名解析的更多相关文章
- 第14章 UDP编程(1)_UDP客户端服务器模型
1. UDP编程模型 (1)UDP客户端服务器模型 ①客户端可以不调用bind()而直接与服务器通讯. ②UDP是无连接的,因此服务端不需要调用accept和listen,客户端也无需调用connec ...
- 第14章 UDP编程(3)_利用UDP实现广播功能
3. 广播的介绍 (1)广播 ①广播实现一对多的通信,如QQ群 ②它通过向广播地址发送数据报文实现的 (2)SO_BROADCAST选项 ①SO_BROADCAST选项控制着UDP套接字是否能发送广播 ...
- 《Android开发艺术探索》读书笔记 (13) 第13章 综合技术、第14章 JNI和NDK编程、第15章 Android性能优化
第13章 综合技术 13.1 使用CrashHandler来获取应用的Crash信息 (1)应用发生Crash在所难免,但是如何采集crash信息以供后续开发处理这类问题呢?利用Thread类的set ...
- 老李推荐:第14章1节《MonkeyRunner源码剖析》 HierarchyViewer实现原理-面向控件编程VS面向坐标编程
老李推荐:第14章1节<MonkeyRunner源码剖析> HierarchyViewer实现原理-面向控件编程VS面向坐标编程 poptest是国内唯一一家培养测试开发工程师的培训机 ...
- 《mysql必知必会》学习_第14章_20180806_欢
第14章:使用子查询. 子查询是镶嵌在其他查询里面,相当其他的select查询的条件来. P91 select order_num from where prod_id='tnt2'; #检索条件 ...
- Windows核心编程:第14章 探索虚拟内存
Github https://github.com/gongluck/Windows-Core-Program.git //第14章 探索虚拟内存.cpp: 定义应用程序的入口点. // #inclu ...
- Linux就这个范儿 第14章 身在江湖
Linux就这个范儿 第14章 身在江湖 “有人的地方就有江湖”,如今的计算机世界就像一个“江湖”.且不说冠希哥有多么无奈,把微博当QQ的局长有多么失败,就说如此平凡的你我什么时候就成了任人摆布的羔羊 ...
- TODO:Golang语言TCP/UDP协议重用地址端口
TODO:Golang语言TCP/UDP协议重用地址端口 这是一个简单的包来解决重用地址的问题. go net包(据我所知)不允许设置套接字选项. 这在尝试进行TCP NAT时尤其成问题,其需要在同一 ...
- 《深入浅出Node.js》第7章 网络编程
@by Ruth92(转载请注明出处) 第7章 网络编程 Node 只需要几行代码即可构建服务器,无需额外的容器. Node 提供了以下4个模块(适用于服务器端和客户端): net -> TCP ...
随机推荐
- Swift中格式化日期
Swift语言中格式化日期跟其它编程语言很相似: var dformatter = NSDateFormatter() dformatter.dateFormat = "yyyy年MM月dd ...
- HDU 4970
http://acm.hdu.edu.cn/showproblem.php?pid=4970 比赛的时候线段树水过的,比赛后线段树一直T,看了下正解真的是智商压制 题意:走直线,长度1-N,还有一些人 ...
- 如何释放vector变量
std::vector<cv::Point> probp; std::vector<int> plabel; plabel.clear(); std::vector<in ...
- 使用Inno Setup Compiler制作安装软件包
前言 项目开发完成之后,需要程序打包发行,本文使用Inno Setup工具制作安装软件包. 系统环境 系统:win7_x64 工具:Inno Setup Complier 实现步骤 1.下载安装Inn ...
- 【JUnit】@Test 报错,"Test cannot be resolved to a type"
想用单元测试 JUnit 单元测试下写好的方法,发现写 @Test 标签报错了,"Test cannot be resolved to a type" 原来是项目没有导入 JUni ...
- 20155328 2016-2017-2 《Java程序设计》第5周学习总结
教材学习内容总结 程序设计本身的错误,建议使用Exception或其子类实例来表现. Java中所有错误都会被打包成对象. 如果父类异常对象在子类异常对象前被捕捉,则catch子类异常对象的区块将永远 ...
- HDU 2647:Reward(拓扑排序+队列)
Reward Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Sub ...
- HDU 1084:What Is Your Grade?
Problem Description "Point, point, life of student!" This is a ballad(歌谣)well known in col ...
- hdu1160 dp
hdu1160 题意:给出很多老鼠的数据,分别是它们的体重和跑速,为了证明老鼠越重跑得越慢,要找一组数据,由若干个老鼠组成,保证老鼠的体重依次增加而跑速依次减小,问这组数据最多能有多少老鼠,并按体重从 ...
- synchronized (lock) 买票demo 线程安全
加锁防止多个线程执行同一段代码! /** http://blog.51cto.com/wyait/1916898 * @author * @since 11/10/2018 * 某电影院目前正在上映贺 ...