Welcome![Sign In][Sign Up]
Location:
Search - sock 5

Search list

[WinSock-NDISSendData_

Description: 使用DELPHI 开发的使用sock控件的网络通讯程序.-use Delphi to develop the use of sock control network communication process.
Platform: | Size: 22412 | Author: gsh | Hits:

[Ftp Serverdosnet

Description: dos 下sock编程 -dos under sock Programming
Platform: | Size: 3617227 | Author: gongfb | Hits:

[WinSock-NDISsock

Description: TSock Component vcl 源码-TSock Component vcl FOSS
Platform: | Size: 35364 | Author: river | Hits:

[Delphi VCLsmallMail

Description: Delphi环境下用纯API完成的匿名邮件发送单元。涉及到本地DNS读取、MX解析以及利用SOCK按照SMTP约定发送EMAIL的单元。非常适合做一些程序的反馈单元。而不用担心内存会泄露你的邮箱密码。- -Delphi environment with pure API completed the anonymous mail sent modules. Relate to the local DNS read, MX Analysis and the use of SMTP Sock under this agreement EMAIL modules. Very suitable for some of the procedures of the feedback unit. And no need to worry about memory will be leaked to your mailbox passwords. -
Platform: | Size: 3518 | Author: 乐天 | Hits:

[Other resourceMMM_SRC.ZIP

Description: DOS下开发网络程序的SOCK库,有示例程序,包括FTP,HTTP,SMTP服务程序的源代码
Platform: | Size: 60925 | Author: aaa | Hits:

[WinSock-NDISTCP实现客户服务器聊天程序

Description:

 

操作系统课程设计任务书


一、设计题目:多机进程通信

应用Socket进程通信技术编写聊天室程序,实现基于服务器的并发多机信息转发。如果各客户端在线则可以实时聊天、发送接收文件,如果某客户端离线,则发送给他的消息可由服务器端进行内容缓存,待重新连线后可以自动接收通过服务器转发的信息或文件。缓存与转发的控制算法可参考操作系统课程中生产者消费者进程同步方法、缓冲池技术等相关理论。
二、设计思路和功能的详细描述
采用TCP协议,所以属于客户机/服务器模式,因此需要聊天服务器端和聊天客户端两个程序,实现的功能是:任意一台装有客户端程序的计算机都可以通过服务器端的IP地址与服务器相连,然后进入聊天室与连接到服务器的其他客户进行聊天。当客户聊天结束时,可以点断开与服务器断开连接,以释放进程让其他等待的客户进入聊天室,本聊天室最大同时支持50个客户端的连接,如果服务器配置较高可以修改程序来增加同时连接数。
三、采用的方法、技术、运行环境及其配置
本聊天程序采用TCP协议,用VC++编写,属于客户机/服务器模式。采用了多线程的机制。其中使用windows Sockets实现多台计算机(多个进程)间的通信,SOCKET实际在计算机中提供了一个通信端口,可以通过这个端口与任何一个具有SOCKET接口的计算机通信。应用程序在网络上传输,接收的信息都通过这个SOCKET接口来实现。客户机/服务器模式中客户应用程序向服务器程序请求服务。一个服务程序通常在一个众所周知的地址监听对服务的请求,也就是说,服务进程一直处于休眠状态,直到一个客户对这个服务的地址提出了连接请求。在这个时刻,服务程序被“惊醒”并且为客户提供服务即对客户的请求作出适当的反应。本聊天程序就是基于这中思想实现的,程序分为两大部分:TCP聊天服务器端和TCP聊天客户端。两者都拥有各自的SOCKET接口,其中服务器端SOCKET接口需要绑定到固定地址上(实现语句:ock=Socket(AF_INET,SOCK_STREAM,0);),等待客户端的连接(实现语句:listen(sock,5);)。等待客户端的连接的过程就是通过多进程机制来实现的。
聊天程序是在VISUAL C++6.0上编译实现的,在WINDOWS2000,XP上测试运行成功。
对客户计算机配置无特殊要求,由于所设置的最大连接进程为50,所以对服务器要求也不高。
四、关键源程序及其详细的注释
<一>、服务器端
1
、Socket初始化
//
初始化对话框
BOOL CCSocketDlg::OnInitDialog()
{

count=0;

m_list.InsertColumn(0,"消息");

m_list.SetColumnWidth(0,435);

m_edit.SetLimitText(99);

.

.

.

.

 


Platform: | Size: 55808 | Author: lenjear | Hits:

[ComboBoxSOCK 5 DELPHI

Description: Create a Socks5 Server
Platform: | Size: 2427 | Author: foxnguyen | Hits:

[Proxy Serverkingate-1.6.tar

Description: kingate是一个代理服务器,能代理多种协议,包括:http,https,socks,ftp,pop3,smtp,telnet,dns。能运行在linux,freebsd,...及其它类unix,还有windows(最新版本要求nt 4.0以上)操作系统上 kingate是一个多线程的程序(采用线程池的方式),所以短时间内大量的连接请求,kingate还能保持很高的性能。 kingate还支持tcp端口映射,可以实现别人访问你的内网主机。-kingate is an agent server, can act the many kinds of agreements, including: Http, https, socks, ftp, pop3, smtp, telnet, dns. Can move in linux, freebsd.. And other kind of unix, but also has windows (the newest edition to request above nt 4.0) on the operating system kingate is a multi-thread procedure (uses line Cheng Chi the way), therefore in the short time the massive connections requested, kingate also can maintain the very high performance. Kingate also supports the tcp port mapping, may realize the others to visit you in webmaster machine.
Platform: | Size: 225280 | Author: none | Hits:

[Proxy ServerSocksS

Description: socks代理服务器的完全实现,实现了socks4,5,connect,udp associate-socks proxy server fully realized and achieved socks4, 5, connect, associate udp
Platform: | Size: 1752064 | Author: 左洪严 | Hits:

[OS programSDKCode3

Description: 《Windows核心编程》PASCAL版示例(由VC代码转换而来)-<windows sock programming>pascal version example(converted from vc code)
Platform: | Size: 456704 | Author: 刘麻子 | Hits:

[Internet-NetworkSendData_

Description:
Platform: | Size: 22528 | Author: gsh | Hits:

[Proxy Serversock5代理

Description: 一个简单的windows环境下SOCK5代理服务器的实现,可以方便的移植到其他应用中。-a simple windows environment SOCK5 achieve the proxy server can be easily transplanted to other applications.
Platform: | Size: 21504 | Author: 杨树 | Hits:

[Internet-NetworkSoonMail

Description: 原创程序。Delphi环境下用纯API完成的匿名邮件发送单元。涉及到本地DNS读取、MX解析以及利用SOCK按照SMTP约定发送EMAIL的单元。非常适合做一些程序的反馈单元。而不用担心内存会泄露你的邮箱密码。-original procedure. Delphi environment with pure API completed an anonymous spammers modules. Involving local DNS read, MX Analysis and the use of SMTP Sock agreement with the unit to send email. Very suitable for some procedures feedback unit. And no need to worry about memory will be leaked to your mailbox passwords.
Platform: | Size: 3072 | Author: | Hits:

[Internet-Network一个实现FTP功能的源代码

Description: 1.使用异步socket连接,异步解析主机名; 2.支持多文件、多级目录/子目录的上传/下载; 3.文件的删除、重命名、修改属性......等等; 4.用户的修改密码.......等等; 5.断点上传/下载; 6.支持托放上传/下载; 7.自定义FTP命令等; 8.拨号网络(电话及ADSL)/挂断等管理; 9.SOCKS4/SOCKS4A, SOCKS5, HTTP1.1;FTP login Proxy等支持; -1. The use of asynchronous socket connections, analytic asynchronous mainframe; 2. Support multiple documents, Multi-level directory/subdirectory upload/download; 3. delete the file, rename, change attributes ...... etc.; 4. the user password changes ....... etc.; 5. Breakpoint upload/download; 6. take care support upload/download; 7. since the definition of FTP orders; 8. Dial-up Network (telephone and ADSL)/hang up such management; 9.SOCKS4/SOCKS4A. SOCKS5, HTTP1.1; FTP Proxy login and other support;
Platform: | Size: 1644544 | Author: 长立志 | Hits:

[J2ME20055109151502

Description: Java Socket 通讯例程 Java Socket 通讯例程 Java Socket 通讯例程Java Socket 通讯例程-Java Programming Java Socket Communications routines Java Sock et communications routines Java Socket Communications routines
Platform: | Size: 941056 | Author: cwn | Hits:

[Internet-Networksock

Description: TSock Component vcl 源码-TSock Component vcl FOSS
Platform: | Size: 34816 | Author: river | Hits:

[Proxy Servermyself_proxy_socks5

Description: 根据网上资料,整理的一份代理服务器软件,支持socks5-According to online information, organize a proxy server software, support for socks5
Platform: | Size: 393216 | Author: 小张 | Hits:

[Delphi VCLUserClient

Description: delphi 编写的 sock 5 客户端验证程序-sock 5 prepared delphi client authentication process
Platform: | Size: 812032 | Author: 王大大 | Hits:

[Internet-Network0x48k-socks5anonym100

Description: anonimous sock 5 proxy server from 0x48k hackerz crew
Platform: | Size: 8192 | Author: unk | Hits:

[Proxy ServerBasicSocketTunnel

Description: Oblivion (DX Sock) socket tunnel example
Platform: | Size: 118784 | Author: aloe | Hits:
« 12 3 »

CodeBus www.codebus.net