免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 7324 | 回复: 5
打印 上一主题 下一主题

socket编程中如何立刻判断出对方和网络断开了 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-09-22 14:39 |只看该作者 |倒序浏览
兄弟们,我用socket编写网络程序,往一台机器send数据,如果对方忽然从网络断开,我怎么能够立刻检测到对方已经不再网络上了?谢谢

论坛徽章:
0
2 [报告]
发表于 2004-09-22 14:53 |只看该作者

socket编程中如何立刻判断出对方和网络断开了

man send


RETURN VALUE
       The  calls  return  the  number  of  characters sent, or -1 if an error
       occurred.

ERRORS
       These are some standard errors generated by  the  socket  layer.  Addi-
       tional  errors may be generated and returned from the underlying proto-
       col modules; see their respective manual pages.

       EAGAIN or EWOULDBLOCK
              The socket is marked non-blocking and  the  requested  operation
              would block.

       EBADF  An invalid descriptor was specified.

       ECONNRESET
              Connection reset by peer.

       EDESTADDRREQ
              The socket is not connection-mode, and no peer address is set.

       EFAULT An invalid user space address was specified for a parameter.

       EINTR  A signal occurred before any data was transmitted.

       EINVAL Invalid argument passed.

       EISCONN
              The connection-mode socket EMSGSIZE
              The  socket  type  requires that message be sent atomically, and
              the size of the message to be sent made this impossible.

       ENOBUFS
              The output queue for a network interface was full.  This  gener-
              ally  indicates  that the interface has stopped sending, but may
              be caused by transient congestion.   (Normally,  this  does  not
              occur  in Linux. Packets are just silently dropped when a device
              queue overflows.)

       ENOMEM No memory available.

       ENOTCONN
              The socket is not connected, and no target has been given.

       ENOTSOCK
              The argument s is not a socket.

       EOPNOTSUPP
              Some bit in the flags argument is inappropriate for  the  socket
              type.

       EPIPE  The  local  end  has  been  shut  down  on a connection oriented
              socket.  In this case the process will also  receive  a  SIGPIPE
              unless MSG_NOSIGNAL is set.was connected already but a recipient

论坛徽章:
0
3 [报告]
发表于 2004-09-23 08:35 |只看该作者

socket编程中如何立刻判断出对方和网络断开了

我写了,但是对方网络断开后,不能监测到的,还有其它方法么?自己顶一下

论坛徽章:
0
4 [报告]
发表于 2004-09-23 10:03 |只看该作者

socket编程中如何立刻判断出对方和网络断开了

超时

论坛徽章:
0
5 [报告]
发表于 2004-09-23 10:09 |只看该作者

socket编程中如何立刻判断出对方和网络断开了

写一个心跳函数来检测

论坛徽章:
0
6 [报告]
发表于 2004-09-23 15:17 |只看该作者

socket编程中如何立刻判断出对方和网络断开了

好像你可以写一个时刻监视对方网络的程序
我曾经写过的,不过是3年前了
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP