您好,登錄后才能下訂單哦!
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <sys/types.h> #include <netinet/in.h> #include <sys/socket.h> #define SERV_PORT 25555 //服務器接聽端口號 #define BACKLOG 20 //請求隊列中允許請求數 #define BUF_SIZE 256 //緩沖區大小 int main(int argc,char *argv[]) { int ret; char buf[BUF_SIZE]; pid_t pid; //定義管道描述符 int sockfd; //定義sock描述符 int clientfd; //定義數據傳輸sock描述符 struct sockaddr_in host_addr; //本機IP地址和端口信息 struct sockaddr_in client_addr; //客戶端IP地址和端口信息 int length = sizeof client_addr; //創建套接字 sockfd = socket(AF_INET, SOCK_DGRAM, 0); //TCP/IP協議,數據流套接字 if(sockfd == -1) //判斷socket函數返回值 { printf("創建socket失敗.\n"); return 1; } /**綁定套接字**/ bzero(&host_addr, sizeof host_addr); host_addr.sin_family = AF_INET; //TCP/IP協議 host_addr.sin_port = htons(SERV_PORT); //設定端口號 host_addr.sin_addr.s_addr = INADDR_ANY; //本地IP地址 ret = bind(sockfd, (struct sockaddr *)&host_addr, sizeof host_addr); //綁定套接字 if(ret == -1) //判斷bind函數返回值 { printf("調用bind函數失敗.\n"); return 1; } while(1) { bzero(buf, sizeof buf); ret = recvfrom(sockfd, buf, sizeof(buf), 0 ,(struct sockaddr *)&client_addr, &length); //接收接連請求 if(ret == -1) //判斷recvfrom函數的返回值 { printf("接受連接成功"); return 1; } // printf("Client IP:%s \n", inet_ntoa(client_addr.sin_addr.s_addr)); //輸出客戶端IP printf("接收到: %s\n", buf); sleep(2); } close(clientfd); //關閉連接 return 0; }
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。