3天精通linux网络编程 一

基本tcp套接字编程。

客户端程序:client.c

  1. #include <stdio.h>
  2. #include <unistd.h>
  3. #include <strings.h>
  4. #include <sys/types.h>
  5. #include <sys/socket.h>
  6. #include <netinet/in.h>
  7. #include <arpa/inet.h>
  8. #include <netdb.h>
  9. #include <stdlib.h>
  10. #define PORT 1234
  11. #define MAXDATASIZE 100
  12. int main(int argc, char **argv)
  13. {
  14.     int sockfd, num;
  15.     char buf[MAXDATASIZE];
  16.     
  17.     struct hostent *he;
  18.     struct sockaddr_in server;
  19.     if(argc != 2)
  20.     {   
  21.         printf("Uage: %s <IP ADDRESS>/n", argv[0]);
  22.         exit(1);
  23.     }
  24.     if((he = gethostbyname(argv[1])) == NULL)
  25.     {
  26.         printf("gethostbyname() error!");
  27.         exit(1);
  28.     }
  29.     if((sockfd = socket(AF_INET, SOCK_STREAM, 0)) == -1)
  30.     {
  31.         printf("socket() error.");
  32.         exit(1);
  33.     }
  34.     bzero(&server, sizeof(server));
  35.     server.sin_family = AF_INET;
  36.     server.sin_port = htons(PORT);
  37.     server.sin_addr = *((struct in_addr *)he -> h_addr);
  38.     if(connect(sockfd, (struct sockaddr *)&server, sizeof(server)) == -1)
  39.     {
  40.         printf("connect() error/n");
  41.         exit(1);
  42.     }
  43.     if((num = recv(sockfd, buf, MAXDATASIZE, 0)) == -1)
  44.     {
  45.         printf("revc() error!/n");
  46.         exit(1);
  47.     }
  48.     
  49.     buf[num - 1] = '/0';
  50.     printf("server message: %s/n", buf);
  51.     close(sockfd);
  52. }

 

服务器端程序:server.c

 

  1. #include <stdio.h>
  2. #include <unistd.h>
  3. #include <string.h>
  4. #include <sys/socket.h>
  5. #include <sys/types.h>
  6. #include <netinet/in.h>
  7. #include <arpa/inet.h>
  8. #include <stdlib.h>
  9. #define PORT 1234
  10. #define BACKLOG 1
  11. int main(int argc, char **argv)
  12. {
  13.     int listenfd, connectfd;
  14.     struct sockaddr_in server;
  15.     struct sockaddr_in client;
  16.     socklen_t addrlen;
  17.     if((listenfd = socket(AF_INET, SOCK_STREAM, 0)) == -1)
  18.     {
  19.         perror("socket error()!");
  20.         exit(1);
  21.     }
  22.     int opt = SO_REUSEADDR;
  23.     setsockopt(listenfd, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt));
  24.     bzero(&server, sizeof(server));
  25.     
  26.     server.sin_family = AF_INET;
  27.     server.sin_port = htons(PORT);
  28.         server.sin_addr.s_addr = htonl(INADDR_ANY);
  29.     if(bind(listenfd, (struct sockaddr *)&server, sizeof(server)) == -1)
  30.     {
  31.         perror("Bind() error!");
  32.         exit(1);
  33.     }
  34.     if(listen(listenfd, BACKLOG) == -1)
  35.     {
  36.         perror("listen() error!");
  37.         exit(1);
  38.     }
  39.     addrlen = sizeof(client);
  40.     if((connectfd = accept(listenfd, (struct sockaddr *)&client, &addrlen)) == -1)
  41.     {
  42.         perror("accept() error./n");
  43.         exit(1);
  44.     }
  45.     printf("You got a connection from client's ip is %s, port is %d/n", inet_ntoa(client.sin_addr), htons(client.sin_port));
  46.     send(connectfd, "WELCOME!/n", 10, 0);
  47.     close(connectfd);
  48.     close(listenfd);
  49. }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值