当前位置:   article > 正文

【网编】——tcp编程

【网编】——tcp编程

tcp流程

服务器 

头文件:

#include <sys/types.h>          /* See NOTES */
#include <sys/socket.h>
#include <errno.h>
#include<stdio.h>
#include <netinet/in.h>
#include <netinet/ip.h> /* superset of previous */
#include <arpa/inet.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>

  1. #include <sys/types.h> /* See NOTES */
  2. #include <sys/socket.h>
  3. #include <errno.h>
  4. #include<stdio.h>
  5. #include <netinet/in.h>
  6. #include <netinet/ip.h> /* superset of previous */
  7. #include <arpa/inet.h>
  8. #include <string.h>
  9. #include <unistd.h>
  10. #include <stdlib.h>
  11. int main(int argc, char const *argv[])
  12. {
  13. if (argc != 2)
  14. {
  15. printf("usage: <port>\n");
  16. return -1;
  17. }
  18. //1.创建套接字
  19. int sockfd= socket(AF_INET, SOCK_STREAM, 0);
  20. if (sockfd <0 )
  21. {
  22. perror("socket err.");
  23. return -1;
  24. }
  25. printf("sockfd:%d\n",sockfd);
  26. //2.绑定ip+port
  27. //填充结构体
  28. struct sockaddr_in saddr,caddr;
  29. saddr.sin_family=AF_INET;//协议族
  30. saddr.sin_port=htons(atoi(argv[1]));//端口号
  31. #if 0
  32. saddr.sin_addr.s_addr=inet_addr(argv[1]);//ip
  33. #else
  34. //绑定电脑上的所有可用Ip给服务器
  35. //saddr.sin_addr.s_addr=INADDR_ANY;
  36. saddr.sin_addr.s_addr=inet_addr("0.0.0.0");//ip
  37. #endif
  38. socklen_t len=sizeof(saddr);
  39. if(bind(sockfd, (struct sockaddr *)&saddr,len) <0)
  40. {
  41. perror("bind err.");
  42. return -1;
  43. }
  44. printf("bind success\n");
  45. //3.监听,将主动套接字变成被动套接字
  46. if(listen(sockfd, 6)<0)
  47. {
  48. perror("listen err.");
  49. return -1;
  50. }
  51. printf("listen success\n");
  52. //4.accept阻塞等待连接产生,有连接则创建套接字。
  53. while(1)
  54. {
  55. int acceptfd=accept(sockfd, (struct sockaddr *)&caddr, &len);
  56. if (acceptfd<0)
  57. {
  58. perror("accept err.");
  59. return -1;
  60. }
  61. printf("connect ok\n");
  62. printf("acceptfd:%d\n",acceptfd);
  63. printf("ip:%s port:%d\n",inet_ntoa(caddr.sin_addr),ntohs(caddr.sin_port));
  64. //5.发送
  65. #define N 64
  66. char buf[N]={};
  67. while (1)
  68. {
  69. int ret=recv(acceptfd,buf, N, 0);//返回值是实际读到的数量
  70. //ret的返回值有讲究,
  71. //当ret>0时代表对方发数据了,当ret==0时,代表对端退出,ret<0时代表接收出错
  72. if (ret < 0)
  73. {
  74. perror("recv err.");
  75. return -1;
  76. }else if (ret > 0)
  77. {
  78. printf("buf:%s\n",buf);
  79. memset(buf,0,N);
  80. }else
  81. {
  82. printf("client exit\n");
  83. close(acceptfd);
  84. break;
  85. }
  86. }
  87. }
  88. //6.关闭套接字
  89. close(sockfd);
  90. return 0;
  91. }
  92. }

tcp客户端 

创建套接字socket-发送连接请求connect-发送数据(gets-send-memset)-关闭套接字close

  1. #include <sys/types.h> /* See NOTES */
  2. #include <sys/socket.h>
  3. #include <errno.h>
  4. #include<stdio.h>
  5. #include <netinet/in.h>
  6. #include <netinet/ip.h> /* superset of previous */
  7. #include <arpa/inet.h>
  8. #include <string.h>
  9. #include <unistd.h>
  10. #include <stdlib.h>
  11. int main(int argc, char const *argv[])
  12. {
  13. if (argc != 3)
  14. {
  15. printf("usage:<ip> <port>\n");
  16. return -1;
  17. }
  18. //1.创建套接字
  19. int sockfd= socket(AF_INET, SOCK_STREAM, 0);
  20. if (sockfd <0 )
  21. {
  22. perror("socket err.");
  23. return -1;
  24. }
  25. printf("sockfd:%d\n",sockfd);
  26. //2.发送连接请求
  27. struct sockaddr_in addr;
  28. addr.sin_family=AF_INET;
  29. addr.sin_port=htons(atoi(argv[2]));
  30. addr.sin_addr.s_addr=inet_addr(argv[1]);
  31. socklen_t addrlen=sizeof(addr);
  32. if(connect(sockfd, (struct sockaddr *)&addr,addrlen)<0)
  33. {
  34. perror("connect err.");
  35. return -1;
  36. }
  37. //3.发送数据
  38. #define N 64
  39. char buf[N]={0};
  40. while (1)
  41. {
  42. gets(buf);
  43. send(sockfd,buf,N,0);
  44. memset(buf,0,N);
  45. }
  46. //4.关闭套接字
  47. close(sockfd);
  48. return 0;
  49. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/998705
推荐阅读
相关标签
  

闽ICP备14008679号