Linux下多人聊天空间代码.doc

Linux下多人聊天空间代码.doc

ID:58676611

大小:28.00 KB

页数:7页

时间:2020-10-15

Linux下多人聊天空间代码.doc_第1页
Linux下多人聊天空间代码.doc_第2页
Linux下多人聊天空间代码.doc_第3页
Linux下多人聊天空间代码.doc_第4页
Linux下多人聊天空间代码.doc_第5页
资源描述:

《Linux下多人聊天空间代码.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、Linux下多人聊天空间代码在相同目录下新建文件wwb.h、wwb.c、room.c,把下面相应的代码拷进这两个文件里;再建一个recv.txt,该文件用于保存和显示聊天记录。在Linux中,使用下面命令编译:gcc-oroomroom.cwwb.c使用命令运行:./room使用命令查看聊天记录:tail-frecv.txt//wwb.h头文件intWriteLog(constchar*format,...);//写日志文件char*GetSysTime(char*time);//得到系统时间//wwb.

2、c代码#include#include#include#include#include#include#include#includeintWriteLog(constchar*format,...){FILE*fp;fp=fopen("recv.txt","a+");if(fp==NULL)return-1;va_listarg_ptr;va_sta

3、rt(arg_ptr,format);vfprintf(fp,format,arg_ptr);va_end(arg_ptr);fclose(fp);return0;}char*GetSysTime(char*out){time_ttimep;structtm*p;time(&timep);p=localtime(&timep);intyear=(1900+p->tm_year);intmonth=(1+p->tm_mon);intday=p->tm_mday;inthour=p->tm_hour;intm

4、inute=p->tm_min;intsecond=p->tm_sec;sprintf(out,"%d-",year);if(month<10)sprintf(out+5,"0%d-",month);elsesprintf(out+5,"%d-",month);if(day<10)sprintf(out+8,"0%d",day);elsesprintf(out+8,"%d",day);if(hour<10)sprintf(out+11,"0%d:",hour);elsesprintf(out+11,"%d

5、:",hour);if(minute<10)sprintf(out+14,"0%d:",minute);elsesprintf(out+14,"%d:",minute);if(second<10)sprintf(out+17,"0%d",second);elsesprintf(out+17,"%d",second);returnout;}/*intmain(){chartime[50];inti=10;char*s="hello";WriteLog("%s,%d,%s",GetSysTime(time

6、),i,s);}*///room.c主程序代码#include#include#include#include#include#include#include#include#include"wwb.h"#defineBUFSIZE255intmain(intargc,char*argv[]){if(argc!=2){pr

7、intf("Parameter(s):");exit(1);}char*username=argv[1];/*charusername[16]={0};do{printf("请输入你的用户名:");fgets(username,16,stdin);}while(!(strcmp(username,"")));*/in_port_tservPort=5000;char*bcIP="192.168.12.255";in_port_tbcPort=5000;pid_tpid;pid=

8、fork();if(pid>0)//ParentProcess{intsock1=socket(AF_INET,SOCK_DGRAM,IPPROTO_UDP);if(sock1<0){printf("socket()failed");exit(1);}inton=1;setsockopt(sock1,SOL_SOCKET,SO_BROADCAST,&on,sizeof(on));structsockaddr_inbcAdd

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。