搜索资源列表
QQProject.zip
- QQ 示例源码 包括: VC++项目源文件(客户端、服务器端) 可执行文件(客户端、服务器端) 供学习C++网络编程参考。
Glycerine网络聊天客户端程序
- Glycerine网络聊天客户端程序-Glycerine network chats the customer end procedure
自制网络聊天室
- 用java技术编写的,包含有服务器端和客户端的聊天室-prepared using java technology, includes server and the client chat rooms
neteasy0.2beta
- 一个基于UDP协议的简单的网络聊天工具,聊天程序既是客户端,可以链接到远程主机,同时又是UDP服务器,可以响应计算机的链接要求,而且增加一个服务器,提供注册和监控的功能。-based on a simple UDP network chat tools, chat program is the client, can link to a remote host, but it is also UDP server, the computer can respond to the link, bu
网络聊天室
- 简易的网络编程实现局域网聊天,支持一个服务器端 , 多个客户端。-Simple Network Programming LAN chat, a server-side support, a number of the client.
网络即时通信系统
- 本连天工具的源码有服务器端和客户端程序两部分组成,整体采用java平台开发,多线程开发,并使用 SQL 2000管理数据库系统!-grievances of the tools have the source code server and client program consists of two parts, the overall use of java platform, multithreaded development, and the use of SQL 2000 databa
chat(网络聊天程序)
- 网络聊天:vc++ 实现 WINSOCK-TCP.包括客户端,服务器端.-network chat : vc achieve WINSOCK-TCP. Include client, server-side.
网络对聊小例程
- 一个网络对聊的小程序,可以基于网络聊天,是一个典型的QQ类软件,程序分为客户端和服务器端,聊天时,只要客户端连接上了服务器端,就能聊天了-a network to talk to the small programs, Web-based chat is a typical category QQ software, procedures are divided into client and server, chat, as long as the client on the server s
linqt-2.8.3.rar
- MyICQ是一套公开源代码的即时通讯软件,包括服务器端和客户端,可以用于互联网或局域网中。可以运行在Windows或Linux(KDE/Qt)操作系统上。目前客户端程序的界面完全模仿腾讯的QQ。,MyICQ is set of public sources codes immediate communication software, including the server end and the customer end, may use in the Internet or the loc
chat
- 基于VC++的即时通讯工具设计开发一个简单的网络聊天通讯程序 1、以客户-服务器方式工作,给出服务器工作端口和客户机工作端口,任何一方都可以主动发起连接服务请求; 2、显示连接建立的过程; 3、定义客户机和服务器之间的通信格式及各个控制字段的作用; 3、服务端和客户端可用命令行界面或Windows风格界面实现,显示通讯双方发送和接收信息内容; 4、通讯结束后,任何一方都可以终止通信,并撤销已连接的链路,释放网络资源。 -Based on VC++ Instant comm
chat
- 本案例是一个网络聊天工具的实现,提供了基本的聊天的功能,通过此例能学习到如何利用Socket建立服务器程序和客户端程序以及关于多进程间调度等方面的知识-This case is a network chat tool, providing the basic chat functions, through this case study into how to set up Socket server and client procedures and processes regarding m
webchat.war
- webchat.war 即时聊天系统网络客户端插件! 客户端不用安装插件即可实现即时聊天!-real-time chat network webchat.war client plug-ins! The client can not install plug-ins to achieve real-time chat!
ChattingRoom
- 计算机网络_基于JAVA的网络聊天室。使用Applet,分别建立服务器和客户端两个工程,先运行服务器端,在运行客户端即可。-Computer Networks _ Web-based JAVA chat rooms. Use Applet, were established server and the client two works, first run the server side, the client can be run.
HA-Proxifier315-LDR_Rsdown.cn代理服务器客户端
- Proxifier代理服务器客户端,方便出差的人员通过该代理直接访问公司内部网络。(Proxifier proxy server client, convenient travel personnel through the agent direct access to the company's internal network.)
新建文件夹
- 简单的网络编程案例,编写两个java程序实现实时聊天(A simple case of network programming, writing two Java programs for real time chat)
vc网络聊天室源代码
- 实现局域网客户端,服务端,实现多客户端互相群聊(Realize LAN client, server, multi client chat with each other)
仿QQ聊天程序SOCKET编程服务端与客户端
- 用java语言及网络通信socket编程编写的网络聊天室,能够实现多人在线聊天。(The network chat room which is written in the Java language can realize the multi - person online chat.)
C++网络聊天室设计报告及源程序
- 服务器端功能: 1、 初始化socket, 创建服务器端。 2、 维护一个链表,保存所有用户的IP地址、端口信息。 3、 接受用户传送来的聊天信息,然后向链表中的所用用户转发。 4、 接受用户传送来的连接判断命令,并向用户发出响应命令。 客户端功能: 客户端界面上的两个文本框,一个用于显示接受的聊天信息,一个用来接受用户输入的聊天信息。当按下“发送”按钮时将信息发送给服务器。 通过本课题的毕业设计,可以比较深入的了解和掌握WINSOCK控件基本属性、方法和事件,理解网络聊天
基于 C++ 的网络在线聊天系统
- 我们将使用 TCP 套接字进行通信,并使用多线程处理多个客户端连接。 首先创建项目结构: chat-system/ ├── src/ │ ├── server/ │ │ ├── server.cpp │ │ ├── server.h │ │ └── main.cpp │ └── client/ │ ├── client.cpp │ ├── client.h │ └── main.cpp └── CMake