当前位置:  技术问答>linux和unix

linux socket 运行错误

    来源: 互联网  发布时间:2016-01-28

    本文导语:  下面是我socket的服务器和客户端的程序,编译通过了,在执行服务器后返回了server socket name,然后运行客户端时出现错误:client connet: no route to host  我查了connect的错误类型,说是ICMP错误:不可路由(soft error)(目...

下面是我socket的服务器和客户端的程序,编译通过了,在执行服务器后返回了server socket name,然后运行客户端时出现错误:client connet: no route to host 
我查了connect的错误类型,说是ICMP错误:不可路由(soft error)(目的地不可达)
我是在一台机器上即作服务器又做客户端   这个问题该如何解决呢。谢谢!!


///////server
#include      
  #include      
  #include      
  #include      
  #include      
  #include      
  #include      
  #include      
    
  #define   MAX_BUF_SIZE (1024)   
  static   char   buf[MAX_BUF_SIZE];   
    
  int   display_address(const   char   *msg,   struct   sockaddr_in*   p_sin)   
  {   
  if(p_sin->sin_family   !=   AF_INET)     
  {             
  fprintf(stderr,   "Not   an   Internet   socket.n");             
  return   -1;   
  }   
  fprintf(stdout,   "%s   ==>   address   is:   %s   :   %dn",   msg,   inet_ntoa(p_sin->sin_addr),   ntohs(p_sin->sin_port));   
      return   0;   
  }   
    
  int   main()   
  {   
  int   sock,   serv;   
  struct   sockaddr_in   sin;   
  int   size;   
  fd_set   set;   
    
  FD_ZERO(&set);   
    
  serv   =   socket(AF_INET,   SOCK_STREAM,   0);   
  if   (serv   ==   -1)   
  {   
  perror("server   socket");   
  return   -1;   
  }   
    
  memset(&sin,   0,   sizeof(sin));   
  sin.sin_family   =   AF_INET;   
  sin.sin_addr.s_addr   =   htonl(INADDR_ANY);   
  sin.sin_port   =   htons(1685);   
    
  if   (bind(serv,   (struct   sockaddr   *)&sin,   sizeof(sin))   ==   -1)   
  {   
  perror("server   bind");   
  return   -1;   
  }       
    
  listen(serv,   5);   
    
  memset(&sin,   0,   sizeof(sin));   
  size   =   sizeof(sin);   
  if   (getsockname(serv,   (struct   sockaddr   *)&sin,   &size)   ==   -1)   
  perror("serv   sockname");   
  display_address("server   socket   name",   &sin);   
  sock   =   accept(serv,   NULL,   NULL);   
    
  if   (sock   !=   -1)   
  {   
  memset(&sin,   0,   sizeof(sin));   
  size   =   sizeof(sin);   
  if   (getpeername(sock,   (struct   sockaddr   *)&sin,   &size)   ==   -1)   
  perror("sock   peername");   
  display_address("sock   peer   name",   &sin);   
  memset(&sin,   0,   sizeof(sin));   
  size   =   sizeof(sin);   
  if   (getsockname(sock,   (struct   sockaddr   *)&sin,   &size))   
  perror("sock   sockname");   
  display_address("sock   socket   name",   &sin);   
    
  //sleep(1);   
  while(1)   
  {   
  FD_SET(sock,   &set);   
  select(FD_SETSIZE,   &set,   NULL,   NULL,   NULL);   
  size   =   recv(sock,   buf,   MAX_BUF_SIZE,   0);   
  if   (size   

    
 
 

您可能感兴趣的文章:

  • linux/centos安装nginx常见错误及解决办法
  • linux安装codeblock 编译错误make: *** [all-recursive] 错误 1
  • Linux下怎样查c程序的错误号?程序出现错误:System error 32: Broken Pipe, 是什么原因?
  • 紧急求救:在LINUX下如何根据错误代码,查出对应的错误描述?
  • 在Linux系统上recv返回错误,通过errno得到的错误消息为"Interrupted system call"
  • FTP匿名登陆 LINUX 出现错误 linux FTP 550 permission
  • linux 编程获取错误信息有没相关资料?
  • windows下好使的函数到linux下怎么就段错误了呢?
  • linux中非正常关机,出现的错误如何解决?
  • 请问,我用turbo Linux,远程FTP报Password required, but none set错误
  • linux安装错误,怎么解决
  • Linux 下用什么函数查找socket上一次的错误?
  • Linux硬件错误检查工具 mcelog
  • Linux启动错误求助!
  • VM下的linux Socket程序怎么客户机一连接就出现Bad address的错误?
  • 我向linux内核里加载模块时出现段错误
  • Linux虚拟机启动出现错误
  • 为什么每次登录 linux 都出现这句错误信息呢?
  • linux源码包编译有错误
  • Linux下调用.so引发的段错误问题
  • linux下配置PHP 编译的时候出现错误
  • Linux下指定运行时加载动态库路径及shell下执行程序默认路径
  • 嵌入式linux开发:一段代码在windows平台用VC编译运行正常,在linux平台用gcc编译运行正常,但是用arm-linux-gcc编译在嵌入式板子上运行就不正常.
  • 弱弱地问,能否让WINDOWS下自动运行的多媒体光盘在LINUX下也自动运行播放(LINUX下可一看到光盘上文件)
  • 我的linux程序 如何 在pc机器上运行。现在我用arm-linux-g++ 编译后的程序在我的嵌入设备上运行。
  • 程序在windows下用visual运行正常,如何才能在linux下运行??
  • 怎样让linux启动后不运行桌面而是直接运行某个应用程序呢?
  • Linux下的程序是在内存中运行的吗?为什么在程序运行的时候可以删除程序文件?
  • linux编写一个脚本判断程序是否在运行,如果没运行就重启这个软件。
  • 请问如何让Linux 0.11运行?它运行后是怎样的?谢谢!!
  • 新手提问:grep在linux中运行跟在php运行返回结果不一样
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • SSL握手通信详解及linux下c/c++ SSL Socket代码举例
  • 大家帮忙推荐一本linux socket编程的入门书,我刚接触socket,谢谢!!
  • Linux c socket编程:简单的客户端(client)和服务端(server)实现
  • linux socket programe 同一个IP下 bind 多个socket,可以不??
  • linux socket问题。。怎样获得已帮定特定port的一个套接字socket
  • ★★★LINUX与windows的网络编程socket有多大区别?
  • linux下socket编程问题!
  • 求助!!linux下socket编程
  • 请问,在linux下如何探测socket端口通不通啊?
  • 关于LINUX内部socket
  • linux socket fd 写阻塞问题
  • linux下用socket实现多进程间通信问题?
  • 请教: linux下用c++写最简单的socket程序如何写?
  • 弱弱地问,能否让WINDOWS下自动运行的多媒体光盘在LINUX下也自动运行播放(LINUX下可一看到光盘上文件) iis7站长之家
  • 想搞linux下的socket编程,请大家给些意见^_^
  • 如何清楚linux系统中以退出程序的socket连接?
  • 急!!请教关于linux socket编程的一个问题!!
  • 哪里有linux下的c++的socket库????
  • windows 与 linux socket 编程问题
  • 在linux下,我的socket为什么小于零?
  • linux下如何设置一个socket为非阻塞方式?
  • linux c/c++ IP字符串转换成可比较大小的数字
  • 在win分区上安装linux和独立分区安装linux有什么区别?可以同时安装吗?(两个linux系统)
  • linux哪个版本好?linux操作系统版本详细介绍及选择方案推荐
  • 在虚拟机上安装的linux上,能像真的linux系统一样开发linux程序么?
  • secureCRT下Linux终端汉字乱码解决方法
  • 我重装window后,把linux的引导区覆盖了,进不了linux怎么办?急啊,望热心的人帮助 (现在有linux的盘)
  • Linux c字符串中不可打印字符转换成16进制
  • 安装vmware软件,不用再安装linux系统,就可以模拟linux系统了,然后可以在其上学习一下LINUX下的基本操作 了?
  • Linux常用命令介绍:更改所属用户群组或档案属性
  • 红旗Linux主机可以通过127.0.0.1访问,但如何是连网的Win2000机器通过Linux的IP去访问Linux


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3