搜索资源列表
01-simple-chat
- 最简单的聊天室程序,cpp实现,随便
qqprotocol
- 本QQ协议库也是基于这些资料和少量抓包分析包后实现的。本协议库是基于QQ2005协议,全VC6实现-QQ agreement of the Treasury is also based on such information and a small amount of post-capture analysis package achievable. This Agreement is based on the Treasury QQ2005 agreement, to achieve full
dgdfgdfg
- 局域网基于socket套接字的聊天室的设计与实现-dsfsdfsgfghhdsgfsadfa
Twoplanechat
- 双机聊天及文件传输源程序,内含client.cpp及server.cpp两个源码文件,实现双向聊天和文件传输功能-Two-plane chat and file transfer source code, including source client.cpp and server.cpp two documents, the realization of two-way chat and file transfer functions
chat-CPP
- C++写的局域网聊天小软件,网络编程的作业。-C++ to write a small LAN chat software, network programming operation.
CPP
- 简易的聊天软件源代码,包括了客户端和服务端的全部源码,注释很详细。-Simple chat software source code, including the client and server all the source code, comments, very detailed.
CPP.IP.Messenger
- 基于 C++ 语言的飞鸽传书源代码(IP Messenger)-Language based on C++ source code IP Messenger (IP Messenger)
CPP
- 类似于qq的软件,很适合向更加高难的方向发展,适合有一定编程基础的人学习-Qq similar software, it is suitable to the direction of a more highly difficult for people who have some programming-based learning! ! !
IPMsg-cPP
- 飞鸽传书以前的源码.主要用C++。资源是日语版和英语版的。-IP Messenger previous source, mainly using C++. Resources in Japanese and English version.
cPP
- 软件飞鸽传书可以在局域网内高速传输数据,并且占用系统资源少。这是飞鸽传输源代码。-IP Messenger software can transmit data at high speed LAN, and uses less system resources. This is a Flying Pigeon transmission source.
chatserv
- 一个很好的P2P聊天软件开发,基本架构源码~ 使用编程语言C++ 一个客户端的实现,一个服务器端的实现 在客户端设计三个单独的界面:loginDlg.cpp 用户登录界面 chatclientDlg.cpp 登录后的主界面singleDlg.cpp 点对点聊天界面 此外chatclientDlg.cpp:帮助对话框,主要功能:定义创建套接字失败,注册网络读取事件失败,接收数据失败,发送数据失败,并定义等待15s后请求新的用户列表 chatclient.cpp
qpid-cpp-0.6.tar
- Qpid/C++ 是AMQP协议的一个 C++ 的实现。Apache Qpid (Open Source AMQP Messaging) 是一个跨平台的企业通讯解决方案,实现了高级消息队列协议。提供了 Java、C++ 两种服务端版本以及 Java、C++、.NET、Python和Ruby语言的客户端。 其中C++版本的服务器端具备高性能/低消耗以及RDMA支持,可运行于Windows/Linux和Solaris平台;而Java版本的服务器则支持JMS,以及各种平台。 -Qpid/
chat1
- 基于DES和RSA的加密聊天工具,共包含4个文件: chat.cpp、des.h、rsa.h、makefile。 编译:命令行模式下,切换到代码所在目录,输入make后回车即可。 运行:命令行模式下输入 ./chat,然后选择程序执行角色(客户端或服务器),如选择服务器,则程序自动打开端口开始监听;如选择客户端,则需要输入服务器地址。最后输入命令quit退出程序。 此外,代码中实现了异步,select以及普通三种IO模型,需要通过定义宏控制。-DES and RSA encrypti
CHAT(cPP)
- 基于C++的TCP/IP的聊天程序,包含有客户端和服务器两个文件夹-Based on the C++ TCP/IP chat program, includes client and server two folders
基于 C++ 的网络在线聊天系统
- 我们将使用 TCP 套接字进行通信,并使用多线程处理多个客户端连接。 首先创建项目结构: chat-system/ ├── src/ │ ├── server/ │ │ ├── server.cpp │ │ ├── server.h │ │ └── main.cpp │ └── client/ │ ├── client.cpp │ ├── client.h │ └── main.cpp └── CMake