1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
| #include<myhead.h> #define SER_PORT 8888 #define SER_IP "192.168.122.118" int main(int argc, const char *argv[]) { int sfd = socket(AF_INET, SOCK_STREAM, 0); if(sfd == -1) { perror("socket error"); return -1; } printf("sfd = %d\n", sfd); struct timeval tv; tv.tv_sec = 5; tv.tv_usec = 0; if(setsockopt(sfd, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv))==-1) { perror("setsockopt error"); return -1; } int reuse = 1; if(setsockopt(sfd, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(reuse)) == -1) { perror("setsockopt error"); return -1; } printf("端口号快速重用成功\n"); struct sockaddr_in sin; sin.sin_family = AF_INET; sin.sin_port = htons(SER_PORT); sin.sin_addr.s_addr = inet_addr(SER_IP); if(bind(sfd, (struct sockaddr*)&sin, sizeof(sin)) == -1) { perror("bind error"); return -1; } printf("bind success %s %s %d\n", __FILE__, __func__, __LINE__); if(listen(sfd, 128) == -1) { perror("listen error"); return -1; } printf("listen success %s %s %d\n", __FILE__, __func__, __LINE__); struct sockaddr_in cin; socklen_t socklen = sizeof(cin); int newfd = -1; newfd = accept(sfd, (struct sockaddr*)&cin, &socklen); if(newfd == -1) { if(errno == EAGAIN) { printf("timeout\n"); return -1; } perror("accept error"); return -1; } printf("[%s:%d]发来链接请求 %s %s %d\n", \ inet_ntoa(cin.sin_addr), ntohs(cin.sin_port),__FILE__, __func__, __LINE__); char buf[128] = ""; while(1) { bzero(buf, sizeof(buf)); int res = recv(newfd, buf, sizeof(buf), 0); if(res == 0) { printf("客户端已经下线\n"); break; } printf("[%s:%d] : %s\n", inet_ntoa(cin.sin_addr), ntohs(cin.sin_port), buf); strcat(buf, "*_*"); send(newfd, buf, sizeof(buf), 0); printf("发送成功\n"); } close(newfd); close(sfd); return 0; }
|