版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報或認(rèn)領(lǐng)
文檔簡介
1、 SOCKET網(wǎng)絡(luò)編程:Linux下實(shí)現(xiàn)聊天室程序介紹:本聊天室程序在Ubuntu下,采用C語言實(shí)現(xiàn),結(jié)構(gòu)為Client/Server結(jié)構(gòu);服務(wù)端程序通過共享存儲區(qū)存儲聊天數(shù)據(jù),并發(fā)送給每個連接的客戶端;服務(wù)端程序和客戶端程序都是通過父子進(jìn)程分別負(fù)責(zé)發(fā)送和接收數(shù)據(jù)的,以避免數(shù)據(jù)沖撞;需按以下格式調(diào)用客戶端程序:client.exe 服務(wù)端主機(jī)IP 端口號(本程序設(shè)定為:3490) 用戶名(在聊天室中顯示的用戶名)。 程序截圖:/-服務(wù)端-/-客戶端1:真水無香-/-客戶端2:蠟筆小新-程序代碼如下:/-/包含工程所需的頭文件#include<stdio.h> #include<
2、;stdlib.h>#include<sys/types.h> /數(shù)據(jù)類型定義#include<sys/stat.h>#include<netinet/in.h> /定義數(shù)據(jù)結(jié)構(gòu)sockaddr_in#include<sys/socket.h> /提供socket函數(shù)及數(shù)據(jù)結(jié)構(gòu)#include<string.h>#include<unistd.h>#include<signal.h>#include<sys/ipc.h>#include<errno.h>#include<sy
3、s/shm.h>#include<time.h>#define PERM S_IRUSR|S_IWUSR #define MYPORT 3490 /宏定義定義通信端口#define BACKLOG 10 /宏定義,定義服務(wù)程序可以連接的最大客戶數(shù)量#define WELCOME "|-Welcome to the chat room! -|" /宏定義,當(dāng)客戶端連接服務(wù)端時,想客戶發(fā)送此歡迎字符串/轉(zhuǎn)換函數(shù),將int類型轉(zhuǎn)換成char *類型void itoa(int i,char*string) int power,j; j=i; for(power=1
4、;j>=10;j/=10) power*=10; for(;power>0;power/=10) *string+='0'+i/power; i%=power; *string='0'/得到當(dāng)前系統(tǒng)時間void get_cur_time(char * time_str) time_t timep; struct tm *p_curtime; char *time_tmp; time_tmp=(char *)malloc(2); memset(time_tmp,0,2); memset(time_str,0,20); time(&timep);
5、 p_curtime = localtime(&timep); strcat(time_str," ("); itoa(p_curtime->tm_hour,time_tmp); strcat(time_str,time_tmp); strcat(time_str,":"); itoa(p_curtime->tm_min,time_tmp); strcat(time_str,time_tmp); strcat(time_str,":"); itoa(p_curtime->tm_sec,time_tmp); s
6、trcat(time_str,time_tmp); strcat(time_str,")"); free(time_tmp);/創(chuàng)建共享存儲區(qū)key_t shm_create() key_t shmid; /shmid = shmget(IPC_PRIVATE,1024,PERM); if(shmid = shmget(IPC_PRIVATE,1024,PERM) = -1) fprintf(stderr,"Create Share Memory Error:%sna",strerror(errno); exit(1); return shmid;/端口
7、綁定函數(shù),創(chuàng)建套接字,并綁定到指定端口int bindPort(unsigned short int port) int sockfd; struct sockaddr_in my_addr; sockfd = socket(AF_INET,SOCK_STREAM,0);/創(chuàng)建基于流套接字 my_addr.sin_family = AF_INET;/IPv4協(xié)議族 my_addr.sin_port = htons(port);/端口轉(zhuǎn)換 my_addr.sin_addr.s_addr = INADDR_ANY; bzero(&(my_addr.sin_zero),0); if(bind
8、(sockfd,(struct sockaddr*)&my_addr,sizeof(struct sockaddr) = -1) perror("bind"); exit(1); printf("bing success!n"); return sockfd;int main(int argc, char *argv) int sockfd,clientfd,sin_size,recvbytes; /定義監(jiān)聽套接字、客戶套接字 pid_t pid,ppid; /定義父子線程標(biāo)記變量 char *buf, *r_addr, *w_addr, *te
9、mp, *time_str;/="0" /定義臨時存儲區(qū) struct sockaddr_in their_addr; /定義地址結(jié)構(gòu) key_t shmid; shmid = shm_create(); /創(chuàng)建共享存儲區(qū) temp = (char *)malloc(255); time_str=(char *)malloc(20); sockfd = bindPort(MYPORT);/綁定端口 while(1) if(listen(sockfd,BACKLOG) = -1)/在指定端口上監(jiān)聽 perror("listen"); exit(1); pr
10、intf("listening.n"); if(clientfd = accept(sockfd,(struct sockaddr*)&their_addr,&sin_size) = -1)/接收客戶端連接 perror("accept"); exit(1); printf("accept from:%dn",inet_ntoa(their_addr.sin_addr); send(clientfd,WELCOME,strlen(WELCOME),0);/發(fā)送問候信息 buf = (char *)malloc(255)
11、; ppid = fork();/創(chuàng)建子進(jìn)程 if(ppid = 0) /printf("ppid=0n"); pid = fork(); /創(chuàng)建子進(jìn)程 while(1) if(pid > 0) /父進(jìn)程用于接收信息 memset(buf,0,255); /printf("recvn"); /sleep(1); if(recvbytes = recv(clientfd,buf,255,0) <= 0) perror("recv1"); close(clientfd); raise(SIGKILL); exit(1); /w
12、rite buf's data to share memory w_addr = shmat(shmid, 0, 0); memset(w_addr, '0', 1024); strncpy(w_addr, buf, 1024); get_cur_time(time_str); strcat(buf,time_str); printf(" %sn",buf); else if(pid = 0) /子進(jìn)程用于發(fā)送信息 /scanf("%s",buf); sleep(1); r_addr = shmat(shmid, 0, 0); /
13、printf("-%sn",r_addr); /printf("cmp:%dn",strcmp(temp,r_addr); if(strcmp(temp,r_addr) != 0) strcpy(temp,r_addr); get_cur_time(time_str); strcat(r_addr,time_str); /printf("discriptor:%dn",clientfd); /if(send(clientfd,buf,strlen(buf),0) = -1) if(send(clientfd,r_addr,strlen
14、(r_addr),0) = -1) perror("send"); memset(r_addr, '0', 1024); strcpy(r_addr,temp); else perror("fork"); printf("-n"); free(buf); close(sockfd); close(clientfd); return 0;/-/包含工程所需的頭文件#include<stdio.h>#include<netinet/in.h> /定義數(shù)據(jù)結(jié)構(gòu)sockaddr_in#include&l
15、t;sys/socket.h> /提供socket函數(shù)及數(shù)據(jù)結(jié)構(gòu)#include<sys/types.h> /數(shù)據(jù)類型定義#include<string.h>#include<stdlib.h>#include<netdb.h>#include<unistd.h>#include<signal.h>#include<time.h>int main(int argc, char *argv) struct sockaddr_in clientaddr;/定義地址結(jié)構(gòu) pid_t pid; int clien
16、tfd,sendbytes,recvbytes;/定義客戶端套接字 struct hostent *host; char *buf,*buf_r; if(argc < 4) printf("usage:n"); printf("%s host port namen",argv0); exit(1); host = gethostbyname(argv1); if(clientfd = socket(AF_INET,SOCK_STREAM,0) = -1) /創(chuàng)建客戶端套接字 perror("socketn"); exit(1);
17、 /綁定客戶端套接字 clientaddr.sin_family = AF_INET; clientaddr.sin_port = htons(uint16_t)atoi(argv2); clientaddr.sin_addr = *(struct in_addr *)host->h_addr); bzero(&(clientaddr.sin_zero),0); if(connect(clientfd,(struct sockaddr *)&clientaddr,sizeof(struct sockaddr) = -1) /連接服務(wù)端 perror("conne
18、ctn"); exit(1); buf=(char *)malloc(120); memset(buf,0,120); buf_r=(char *)malloc(100); if( recv(clientfd,buf,100,0) = -1) perror("recv:"); exit(1); printf("n%sn",buf); pid = fork();/創(chuàng)建子進(jìn)程 while(1) if(pid > 0) /父進(jìn)程用于發(fā)送信息 /get_cur_time(time_str); strcpy(buf,argv3); strcat(buf,":"); memset(buf_r,0,100); /gets(buf_r); fgets(buf_r,100,stdin); strncat(buf,buf_r,strlen(buf_r)-1); /strcat(buf,time_str); /printf("-%sn",buf); if(sendbytes = send(clientfd,buf,str
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2025-2030年中國智能公交行業(yè)商業(yè)模式創(chuàng)新戰(zhàn)略制定與實(shí)施研究報告
- 新形勢下餐飲食材配送行業(yè)可持續(xù)發(fā)展戰(zhàn)略制定與實(shí)施研究報告
- 2025-2030年中國有色金屬礦產(chǎn)采選行業(yè)開拓第二增長曲線戰(zhàn)略制定與實(shí)施研究報告
- 高層領(lǐng)導(dǎo)戰(zhàn)略管理培訓(xùn)課件
- 四川省綿陽市2024屆高三下學(xué)期第三次診斷性考試(三模)英語試題
- 中國錄音復(fù)制行業(yè)競爭格局分析及投資戰(zhàn)略咨詢報告
- 一年級數(shù)學(xué)(上)計算題專項(xiàng)練習(xí)匯編
- 實(shí)驗(yàn)小學(xué)學(xué)年第一學(xué)期班主任參考計劃二年級3班
- 疫情防控視角下的社區(qū)多元主體協(xié)同治理研究
- 關(guān)愛殘疾兒童呵護(hù)折翼天使
- 2024年危險化學(xué)品生產(chǎn)經(jīng)營單位其他從業(yè)人員考試題庫附答案
- 信號分析與處理課程設(shè)計課程教學(xué)大綱基本要求及規(guī)范(集中實(shí)踐環(huán)節(jié))
- 2024年中考物理真題及分類匯編-考點(diǎn)25:磁現(xiàn)象-電生磁
- 2024年更新版:精準(zhǔn)農(nóng)業(yè)無人機(jī)植保服務(wù)合同
- 2024年度中國醫(yī)院人力資源現(xiàn)狀調(diào)研報告
- 【MOOC】有機(jī)化學(xué)-華中農(nóng)業(yè)大學(xué) 中國大學(xué)慕課MOOC答案
- 二水石膏轉(zhuǎn)化為半水石膏的研究
- 中醫(yī)特色治療進(jìn)修匯報
- 闌尾炎內(nèi)鏡治療
- 《2025年日歷》電子版模板年歷月歷工作學(xué)習(xí)計劃橫版整年帶農(nóng)歷
- 2023-2024學(xué)年廣東省廣州市白云區(qū)九年級(上)期末語文試卷
評論
0/150
提交評論