- 论坛徽章:
- 0
|
本帖最后由 xqf 于 2014-10-08 13:50 编辑
请教:如何主动式检测某些 指定IP地址的客户端 是否在线, 如已知:IP:192.168.0.1 192.168.0.6 192.168.0.20 等
在网上找到一段C 函数,不知道能否用,还请指教:
函数代码如下:
- #include <netinet/tcp.h>
- int set_tcp_keepAlive(int fd, int start, int interval, int count)
- {
- int keepAlive = 1;
- if (fd < 0 || start < 0 || interval < 0 || count < 0) return -1;
- //启用心跳机制,如果您想关闭,将keepAlive置零即可
- if(setsockopt(fd,SOL_SOCKET,SO_KEEPALIVE,(void*)&keepAlive,sizeof(keepAlive)) == -1)
- {
- perror("setsockopt");
- return -1;
- }
- //启用心跳机制开始到首次心跳侦测包发送之间的空闲时间
- if(setsockopt(fd,SOL_TCP,TCP_KEEPIDLE,(void *)&start,sizeof(start)) == -1)
- {
- perror("setsockopt");
- return -1;
- }
- //两次心跳侦测包之间的间隔时间
- if(setsockopt(fd,SOL_TCP,TCP_KEEPINTVL,(void *)&interval,sizeof(interval)) == -1)
- {
- perror("setsockopt");
- return -1;
- }
- //探测次数,即将几次探测失败判定为TCP断开
- if(setsockopt(fd,SOL_TCP,TCP_KEEPCNT,(void *)&count,sizeof(count)) == -1)
- {
- perror("setsockopt");
- return -1;
- }
- return 0;
- }
复制代码 谢谢
|
|