Prayer

在一般中寻求卓越
posts - 1256, comments - 190, trackbacks - 0, articles - 0
  C++博客 :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理
  #include   "unp.h"    
   
  int   main(int   argc,   char   **argv)    
  {    
          int   sockfd,   mss,   sendbuff;  
          socklen_t   optlen;  
          float   kk;  
          sockfd   =   Socket(AF_INET,   SOCK_STREAM,   0);   /*   Fetch   and   print   the   TCP   maximum         segment           size.   */    
          optlen   =   sizeof(mss);    
          sendbuff   =2048;    
          Setsockopt(sockfd,   SOL_SOCKET,   SO_SNDBUF,   sendbuff,   sizeof(sendbuff));    
          optlen   =   sizeof(sendbuff);    
          Getsockopt(sockfd,   SOL_SOCKET,   SO_SNDBUF,   sendbuff,   &optlen);    
          printf("After   send   buffer   size   =   %d\n",   sendbuff);    
   
          exit(0);    
   
  }   
   

Feedback

# re: linux下如何装设置本机socket发送和接收缓冲区大小  回复  更多评论   

2010-05-02 20:00 by errno
just failed.

只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   知识库   博问   管理