资源简介
在unbantu下用c语言实现的命令聊天室、可通过客户端上传和下载文件,还可实现单聊功能
代码片段和文件信息
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
typedef struct{
int type;
int fd;
int fp;
int Mask;
char name[20];
char filename[30];
char buf[1000];
}Masg*Pm;
Pm P;
void *task(void *arg)
{
int s = *(int *)arg;
struct json_object *obj*type*data*name*filename*sure;
// write(P->fdbufstrlen(buf));
while(1)
{
char buf[1024]={};
char filedata[10]={};
int res =recv(sbufsizeof(buf)0);
if(res<=0)
break;
// strcpy(buf“{\“type\“:1}“);
obj = json_tokener_parse(buf);
type = json_object_object_get(obj“type“);
//printf(“type:%p\n“type);
data = json_object_object_get(obj“data“);
//printf(“data:%p\n“data);
name = json_object_object_get(obj“name“);
filename = json_object_object_get(obj“filename“);
//printf(“filename:%p\n“filename);
sure = json_object_object_get(obj“sure“);
//printf(“sure:%p\n“sure);
// printf(“buf **** =%s\n“buf);
// printf(“%s\n“json_object_to_json_string(obj));
if(json_object_get_int(type)==1)
{
// printf(“%s\n“json_object_to_json_string(obj));
printf(“群聊消息:%s\n“json_object_get_string(data));
}
else if(json_object_get_int(type)==2)
{
if(sure!=NULL)
{
if(strcmp(json_object_get_string(sure)“nofile“)==0)
{
printf(“没有该文件\n“);
continue;
}
if(strcmp(json_object_get_string(sure)“finish“)==0)
{
printf(“下载完成\n“);
close(P->fd);
continue;
}
}
if(filename!=NULL)
{
if(strcmp(json_object_get_string(filename)P->filename)==0) //返回文件名并创建
{
P->fd =open(P->filenameO_WRONLY|O_CREAT|O_TRUNC0666);
if(P->fd==-1)
{
perror(“sendfile“);
continue;
}
}
}
if(data!=NULL)
{
{
write(P->fdjson_object_get_string(data)strlen(json_object_get_string(data)));
}
}
}
else if(json_object_get_int(type)==3)
{
//printf(“%s\n“json_object_to_json_string(obj));
if(sure!=NULL)
{
if(strcmp(json_object_get_string(sure)“fail“)==0)
{
printf(“上传失败\n“);
continue;
}
if(strcmp(json_object_get_string(sure)“ready“)==0)
{
printf(“准备传输\n“);
}
}
json_object_object_del(obj“sure“);
json_object_object_del(obj“filename“);
while((res=read(P->fpfiledatasizeof(filedata)-1))>0)
{
//printf(“%s**************%ld\n“filedatasizeof(fi
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 18704 2018-10-29 19:31 TCPchat\cilent1\cilent1
文件 9560 2018-10-29 18:55 TCPchat\cilent1\cilent1.c
文件 290 2018-10-29 20:08 TCPchat\cilent1\file.txt
文件 206 2018-10-27 15:18 TCPchat\cilent1\test.txt
文件 290 2018-10-26 11:21 TCPchat\server\file.txt
文件 18864 2018-10-29 19:44 TCPchat\server\server
文件 8654 2018-10-29 19:43 TCPchat\server\server.c
文件 206 2018-10-29 20:09 TCPchat\server\test.txt
文件 21650 2018-10-30 18:29 TCPchat\设计文档.docx
目录 0 2018-10-29 20:08 TCPchat\cilent1
目录 0 2018-10-29 20:09 TCPchat\server
目录 0 2018-10-30 18:29 TCPchat
----------- --------- ---------- ----- ----
78424 12
- 上一篇:VC++关于纹理特征提取的代码完整
- 下一篇:如何在keil中查看程序执行时间
相关资源
- C语言端口扫描源码
- 基于C语言的矩阵乘法
- ELGamal加解密(c语言实现).zip
- RSA加解密c语言实现.zip
- 哈夫曼树的应用和实现 C语言
- 操作系统调度算法c语言实现
- c语言实现中缀表达式转后缀并求值
- md5加密算法 C语言经过测试验证完整版
- 非线性最小二乘法C语言代码
- C语言设计一元稀疏多项式课程设计
- c语言回溯法走迷宫的源码
- 数据结构之迷宫求解完整代码(C语言
- 单片机 C语言温度控制程序
- 51单片机-光立方-C语言
- 课程设计 c语言 学生选课系统
- C语言 人事管理系统
- c语言实现考试管理系统选择题
- 课程信息管理系统 C语言版本 C语言
- 中国大学MOOC-翁恺-C语言程序设计习题
- c语言多线程计算PI
- 东北大学课程设计—编译原理课程设
- 这是用C语言实现模糊控制的算法程序
- 滴水逆向 文件操作pe修改C语言源代码
- C语言:中缀算术表达式求值栈 附答案
- 用C语言实现DPSK数字信号调制
- 单片机电子琴设计用C语言编写
- 基于Linux消息队列的简易聊天室(C语
- C语言高级编程技术 很好的一本书
- C语言矩阵相乘动态数组,文件读写
- 步进伺服电机加减速控制C语言
评论
共有 条评论