CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - windows tcp
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - windows tcp - List
[
VC/MFC
]
WINDOWS__socket18
DL : 0
本附录介绍一些新的A P I函数,有了这些函数,便可在自己的计算机上对I P协议统计情况 进行查询和管理。它们有助于获得下面的能力: ■ I p c o n f i g . e x e(或适用于微软Windows 95的Wi n i p c f g . e x e):显示I P配置信息,允许释放 和更新D H C P分配的I P地址。 ■ N e t s t a t . e x e:显示T C P连接表、U D P监听者表以及I P协议统计情况。 ■ R o u t e . e x e:显示并处理网络路由表。 ■ A r p . e x e:显示并修改供“地址解析协议”(A R P)使用的I P到物理地址翻译表。-This appendix to introduce some new API functions, these functions can be on your computer to the IP protocol statistics query and management. Their ability to contribute to the acquisition of the following: ■ I pconfig. Exe (or apply to Microsoft Windows 95 s Wi nipcfg. Exe): display IP configuration information, allowing the release and update DHCP allocated IP address. ■ N etstat. Exe: show TCP connection table, UDP Listener Table, as well as IP protocol statistics. ■ R oute. Exe: display and handle the network routing table. ■ A rp. Exe: display and modify for ARP (ARP) to use the IP to physical address translation table.
Date
: 2026-01-07
Size
: 417kb
User
:
楼洛阳
[
VC/MFC
]
socket_program_guide
DL : 0
1.套接字编程原理 1.1 Client/server通信模型 1.2 Windows Sockets规范 1.3 套接字 1.3.1 套接字定义 1.3.2分类 1.3.3 套接字的作用 1.3.4端口与地址 1.3.5 套接口属性 2.基本的Windows Sockets API编程 2.1常用函数 2.2 TCP实例 2.3 UDP实例 2.4 Socket 通信阻塞的解决方法 3.MFC下的Socket编程的类 3.1 CAsyncSocket类 3.2 CSocket类 3.3 Windows Sockets:带存档的套接字的工作方式 3.4 流式套接字通信的操作顺序 3.5 使用 CAsyncSocket 类 3.6 从套接字类派生 3.7 套接字通知 3.8 一个使用CSocket类的网络通信实例 3.8.1 服务器端应用程序设计(ServerDemo) 3.8.2 客户端应用程序设计(项目名称ClientDemo) 4.套接字的托管实现 4.1 System::Net::Sockets 命名空间 4.2 实例:一个新邮件检查器 -1. Socket Programming Principle 1.1 Client/server communications model Soc Windows 1.2 kets norms 1.3 Socket socket definition 1.3.1 1.3.3 1.3.2 classification socket role 1.3.4 1.3.5 addresses and port interface attributes two sets. Basic programming Windows Sockets API function commonly used 2.1 2.2 2.3 TCP example UDP Socket Communications examples 2.4 blocked three solutions. MFC Socket Programming under the category of Class 3.2 3.1 CAsyncSocket CSocke t Windows Sockets 3.3 categories : filing with the way socket 340 socket communication flow sequence of operation to use 3.5 CAsyncSo cket category 3.6 derived from the socket type 3.8 3.7 socket notice the use of a network of CSocket Communication Liaison example 3.8.1 server application design (ServerDemo) 3.8.2 client Application D
Date
: 2026-01-07
Size
: 169kb
User
:
gong
[
VC/MFC
]
Winsock
DL : 0
本课程主要讲Windows中TCP/IP编程接口Winsock,通过Winsock可实现点对点或广播通信程序,实际这两者之间的区别不大,编程时其程序流程所用代码几乎相同,不同的地方在于目标地址选择的不同-This course is mainly to talk about Windows in the TCP/IP programming interface Winsock, through Winsock to achieve point-to-point or broadcast communication program, the actual difference between these two little programming process of the procedures used in almost the same code, different Select destination address is that the different
Date
: 2026-01-07
Size
: 45kb
User
:
qxf
[
VC/MFC
]
VC6SocketsAPI
DL : 0
用VC++6.0的Sockets API实现一个聊天室程序.txt VC++对网络编程的支持有socket支持,WinInet支持,MAPI和ISAPI支持等。其中,Windows Sockets API是TCP/IP网络环境里,也是Internet上进行开发最为通用的API。最早美国加州大学Berkeley分校在UNIX下为TCP/IP协议开发了一个API,这个API就是著名的Berkeley Socket接口(套接字)。在桌面操作系统进入Windows时代后,仍然继承了Socket方法。在TCP/IP网络通信环境下,Socket数据传输是一种特殊的I/O,它也相当于一种文件描述符,具有一个类似于打开文件的函数调用-socket()。可以这样理解:Socket实际上是一个通信端点,通过它,用户的Socket程序可以通过网络和其他的Socket应用程序通信。Socket存在于一个"通信域"(为描述一般的线程如何通过Socket进行通信而引入的一种抽象概念)里,并且与另一个域的Socket交换数据。Socket有三类。第一种是SOCK_STREAM(流式),提供面向连接的可靠的通信服务,比如telnet,http。第二种是SOCK_DGRAM(数据报),提供无连接不可靠的通信,比如UDP。第三种是SOCK_RAW(原始),主要用于协议的开发和测试,支持通信底层操作,比如对IP和ICMP的直接访问。 -VC++6.0 using the Sockets API procedures for the realization of a chat room. Txt VC++ on the support network programming socket support, WinInet support, MAPI and ISAPI support. One, Windows Sockets API is TCP/IP network environment, but also for the development of Internet, the most common API. The first University of California, Berkeley campus in UNIX for the TCP/IP protocol has developed an API, the API is well-known Berkeley Socket interface (socket). Into the Windows desktop operating system in the era after the Socket method inherited. In the TCP/IP network communication environment, Socket data transmission is a special kind of I/O, it is equivalent to a file descriptor, open the file with a similar function call in-socket (). Can interpret it this way: Socket is a communication endpoint, through which users can program the Socket and other network applications of Socket Communications. Socket exist in a "communication domain" (as described in the general thread o
Date
: 2026-01-07
Size
: 3kb
User
:
李涛
[
VC/MFC
]
WindowsScoket
DL : 0
该书详细介绍了TCP/IP协议,以及在Windows环境下的网络编程方法,实用经典-The book details the TCP/IP protocol, as well as in the Windows environment network programming methods, practical classic
Date
: 2026-01-07
Size
: 2.59mb
User
:
靳方睿
[
VC/MFC
]
vchome_net
DL : 0
内包括常用网络协议 剖析TCP和UDP协议 TCP/IP网络通信程序设计 用Socket发送电子邮件 Windows Socket API 使用经验 等
Date
: 2026-01-07
Size
: 498kb
User
:
fm
[
VC/MFC
]
VisualC_TurboC_SerialPort_Communication_Good_Book_
DL : 0
Visual C++/Turbo C 串口通信编程实践 本书从编程实践的角度详细介绍了Windows环境下和DOS环境下的串口通信的基本方法,并根据当前串口与网络结合的发展趋势,介绍了串口与网络TCP/IP、远程控制与监测相结合的一些解决方案和编程要点。由于编程步骤详尽,初学Visual C++/C(甚至是以前完全没有接触过Visual C++)的读者也能很快编写出Visual C++的串口通信程序。本书配光盘,书中实例源程序和相关资料可在对应章节的文件夹中找到。 本书是从事串口及网络通信的技术人员和学习者的极佳参考资料,也可以作为数据通信课程的辅助教材。-Visual C++/Turbo C serial communication programming practice Programming practice from the perspective of the book details the Windows environment and the DOS environment, the basic approach of serial communication and serial ports and network integration based on the current development trend, introduced the serial and network TCP/IP, integrated remote control and monitoring some of the solutions and programming elements. As the detailed programming steps, beginners Visual C++/C (or even no previous contact with Visual C++) readers can quickly write a Visual C++ serial communication program. Book with CD-ROM, the book can be found examples of source code and related sections in the corresponding folder to find. This book is in serial and network communication technology and an excellent reference for learners, but also can be used as data communications course support materials.
Date
: 2026-01-07
Size
: 17.28mb
User
:
小小
[
VC/MFC
]
[Visual-C]serial-communication
DL : 0
该书详细介绍了windows和dos环境下的串口通信基本方法,介绍了串口与网络TCP/IP、远程控制与监测相结合的一些解决方案和编程要点。该书是学习串口通信的经典教程。-The book details basic serial communication method under the Windows and DOS environment , and introduces some solutions and programming elements about the serial and network TCP/IP, remote control and monitoring of combining.This book is classic for learning serial communication .
Date
: 2026-01-07
Size
: 15.68mb
User
:
赵明
[
VC/MFC
]
WindowsProgramDesign
DL : 0
VC++书籍,很好很实用。里面有各种示例。如winsocket编写的TCP/IP客户端服务器通讯。对于学习windows程序有很好帮助- VC++ books, very very useful. There are various examples. Winsocket prepared as TCP/IP client-server communications. There are very good for learning windows program help
Date
: 2026-01-07
Size
: 2.1mb
User
:
HANDAN
[
VC/MFC
]
c5
DL : 0
使用VC++的网络编程总结 1.套接字编程原理 1.1 Client/server 通信模型 1.2 Windows Sockets 规范 1.3 套接字 1.3.1 套接字定义 1.3.2 分类 1.3.3 套接字的作用 1.3.4 端口与地址 1.3.5 套接口属性 2.基本的Windows Sockets API 编程 2.1 常用函数 2.2 TCP 实例 2.3 UDP 实例 2.4 Socket 通信阻塞的解决方法 3.MFC 下的Socket 编程的类 3.1 CAsyncSocket 类 3.2 CSocket 类 3.3 Windows Sockets:带存档的套接字的工作方式 3.4 流式套接字通信的操作顺序 3.5 使用CAsyncSocket 类 3.6 从套接字类派生 3.7 套接字通知 3.8 一个使用CSocket 类的网络通信实例 3.8.1 服务器端应用程序设计(ServerDemo) 3.8.2 客户端应用程序设计(项目名称ClientDemo) 4.套接字的托管实现 4.1 System::Net::Sockets 命名空间 4.2 实例:一个新邮件检查器 5. 怎样实现服务器端多线程的socket 功能-Use vc++ network programming
Date
: 2026-01-07
Size
: 388kb
User
:
fc
[
VC/MFC
]
Windows-Sockets-Based-on-Visual-CPP
DL : 0
《精通Windows Sockets网络开发:基于Visual C++实现》由浅入深、循序渐进地讲解如何使用WindowsSockets开发网络应用程序。WindowsSockets是当前主要的网络开发技术之一。《精通Windows Sockets网络开发:基于Visual C++实现》内容包括准备开发环境、TCP/IP基本介绍、Windows套接字基础、协议特征、基本TCP套接字编程、基本UDP套接字编程、套接字选项、套接字阻塞模式开发、套接字非阻塞模式开发、Select模型开发、WSAAsyncSelect模型开发、WSAEventSelect模型开发、重叠I/O模型开发和完成端口模型开发。为使读者深入理解套接字的理论知识,增加实践项目经验,《精通Windows Sockets网络开发:基于Visual C++实现》最后7章,每章讲解一个具有实践意义的网络应用程序。在这些实例中包含许多软件开发技术知识,如STL、ADO、多线程、MFC、软件设计模式等。-Explain how to use Windows Sockets to develop web applications, including the preparation of the development environment, TCP/IP basic introduction, Windows socket base, protocol features, basic TCP socket programming, basic UDP socket programming, socket options, socket blocking mode development, socket Non-blocking mode development, Select model development, WSAAsyncSelect model development, WSAEventSelect model development, overlapping I/O model development and completion port model development.
Date
: 2026-01-07
Size
: 48.47mb
User
:
Raina
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.