-
浙大网络编程课全套资料,其中包括课件,相关软件,八个编程例子,课后作业,实验与应用等五个部分。希望对大家学习网络编程有所帮助。开发环境为VC 6++ MFC...
浙大网络编程课全套资料,其中包括课件,相关软件,八个编程例子,课后作业,实验与应用等五个部分。希望对大家学习网络编程有所帮助。开发环境为VC 6++ MFC-Zheda a full set of network programming classes, including courseware and related software, eight examples of programming, after-school work, experiments and applications of five parts. Everyone would like to learn network programming help. Development environment for VC 6++ MFC
- 2022-03-12 16:56:14下载
- 积分:1
-
chat
说明: 一个mfc聊天程序,是使用Csock类,服务端和客户端相互通信(A MFC chat program, using the Csock class, servers and clients communicate with each other)
- 2018-12-22 22:43:21下载
- 积分:1
-
A LAN can send messages and documents instant messaging program. Do not need ser...
一个在可以在局域网内发送消息和文件的即时通讯程序。不需要服务器,点对点的通讯。传输文件的速度比windows的共享文件快!-A LAN can send messages and documents instant messaging program. Do not need servers, point-to-point communications. Transfer files faster than windows shared files fast!
- 2023-01-18 06:00:04下载
- 积分:1
-
chap5
C++网络通信 ftp 服务器 客户端
(C++network ftp server clinet)
- 2009-12-26 17:44:57下载
- 积分:1
-
局部二值模式LBP
说明: 灰度共生矩方便提取图像纹理信息,对初学matlab很有用(Gray symbiosis moment is convenient to extract image texture information, which is very useful for beginners to learn matlab)
- 2020-06-22 17:40:02下载
- 积分:1
-
UDPRecieveDLL
UDP 接收数据类,里面有个接收UDP数据的线程。
我自己使用的,可靠的,已经编成DLL了,其中有些解析二进制流的代码,可以不看。(udp socket program , focus on recieve udp data.)
- 2012-03-08 10:04:31下载
- 积分:1
-
P2P NAT网络通信
NAT(Network AddressTranslators),网络地址转换:网络地址转换是在IP地址日益缺乏的情况下产生的,它的主要目的就是为了能够地址重用。NAT分为两大类,基本的NAT和NAPT(NetworkAddress/Port Translator)。 最开始NAT是运行在路由器上的一个功能模块。 最先提出的是基本的NAT,它的产生基于如下事实:一个私有网络(域)中的节点中只有很少的节点需要与外网连接(呵呵,这是在上世纪90年代中期提出的)。那么这个子网中其实只有少数的节点需要全球唯一的IP地址,其他的节点的IP地址应该是可以重用的。 因此,基本的NAT实现的功能很简单,在子网内使用一个保留的IP子网段,这些IP对外是不可见的。子网内只有少数一些IP地址可以对应到真正全球唯一的IP地址。如果这些节点需要访问外部网络,那么基本NAT就负责将这个节点的子网内IP转化为一个全球唯一的IP然后发送出去。(基本的NAT会改变IP包中的原IP地址,但是不会改变IP包中的端口)
- 2016-11-22下载
- 积分:1
-
curl-7.65.1
说明: Duilib 是一款强大的界面开发工具,可以将用户界面和处理逻辑彻底分离,极大地提高用户界面的开发效率,遵循bsd协议。(Duilib is a powerful interface development tool, which can completely separate the user interface and processing logic, greatly improve the development efficiency of user interface, and follow the BSD protocol.)
- 2020-06-19 19:40:02下载
- 积分:1
-
weblogic基本概念
WebLogic 应用服务器有如下几个基本概念: Domain: 域是个逻辑概念,用来组织管理一系列的应用服务器实例,也就是下面要解释的server. 域是WebLogic应用服务器中最大的概念,WebLogic应用服务器启动的时候就是以某个域来启动的,它有一个中心配置文件叫config.xml. A domain is the basic administration unit for WebLogic Server instances (servers) that is represented in its own configuration file (config.xml). A domain consists of one or more servers (and their associated resources) that you manage with a single Administration Server. Cluster: 族也是一个逻辑概念,用来分组用途相同的服务器实例,一个域中可以有多个族。 A cluster is a deployment in which multiple WebLogic Server instances (servers) run simultaneously and work together to provide increased scalability and reliability. A cluster appears to clients to be a single WebLogic Server instance. The servers that constitute a cluster can run on the same machine, or be located on different machines. Machine: 机器是物理上的概念,代表一台运行WebLogic应用服务器的实在的机器,包括其IP地址等信息。一个域中可以包括多台机器。(同一台机器可以属于不同的域吗?) A machine is the logical representation of the computer that hosts one or more WebLogic Server instances (servers). WebLogic Server uses configured machine names to determine the optimum server in a cluster to which certain tasks, such as HTTP session replication, are delegated. The Administration Server uses the machine definition in conjunction with the Node Manager application to start remote servers. Server: 服务器,也就是一个应用服务器的实例,用来部署和运行各种J2EE应用程序,也可以来配置各种服务程序。它是WebLogic应用服务器的基本服务单元。一个WebLogic域中一般有一个管理服务器和多个被管理服务器。也就是下面我们要谈到的两个概念。 A server is an instance of WebLogic Server that runs in its own Java Virtual Machine (JVM) and has its own configuration. Each WebLogic Server domain must have one server that acts as the Administration Server. In a typical production environment, the Administration Server is where the Administration Console is run and used to perform administrative tasks. By default, the Administration Server is called myserver. A typical production environment may also have one or more Managed Servers, which are instances of WebLogic Server used to host enterprise applications. Administrative Server: 管理服务器是用来管理配置域的中心点,一般来说,管理服务器上是不部署应用程序的,而是用来统一管理、配置、监控被管理服务器以及部署应用程序到被管理服务器上。一个域中有一台管理服务器。 Managed Server: 被管理服务器是用来部署运行各种应用程序的。一个域中有一台或多台被管理服务器。 Node Manager: 节点管理器是一个单独运行的后台程序,一般运行在被管理服务器的机器上,用来提供远程启动和停止服务器(Server)的功能。
- 2014-02-28下载
- 积分:1
-
图片上传并生成缩略图和版权信息
图片上传并生成缩略图和版权信息- On the picture passes on and the production shrinks the block
map and the copyright information
- 2022-07-25 12:55:06下载
- 积分:1