实例介绍
《精通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、软件设计模式等。
【实例截图】
【核心代码】
精通Windows Sockets网络开发——基于Visual C++实现.rar
└── 17911
├── 03
│ ├── 3.5
│ │ └── TCP
│ │ ├── Client
│ │ │ ├── Client.cpp
│ │ │ ├── Client.dsp
│ │ │ ├── StdAfx.cpp
│ │ │ └── StdAfx.h
│ │ └── Server
│ │ ├── Server.cpp
│ │ ├── Server.dsp
│ │ ├── Server.dsw
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ └── 3.7
│ └── UDP
│ ├── Client
│ │ ├── Client.cpp
│ │ ├── Client.dsp
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── Example.cpp
│ ├── Example.dsp
│ ├── Example.dsw
│ ├── Example.positions
│ ├── Server
│ │ ├── Server.cpp
│ │ ├── Server.dsp
│ │ ├── Server.dsw
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── StdAfx.cpp
│ └── StdAfx.h
├── 04
│ ├── 4.4
│ │ └── Server
│ │ ├── Desktop_.ini
│ │ ├── Server.cpp
│ │ ├── Server.dsp
│ │ ├── Server.dsw
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ └── 4.6
│ └── Client
│ ├── Client.cpp
│ ├── Client.dsp
│ ├── Client.dsw
│ ├── StdAfx.cpp
│ └── StdAfx.h
├── 05
│ ├── 5.3
│ │ └── Server
│ │ ├── Client.cpp
│ │ ├── Client.h
│ │ ├── Desktop_.ini
│ │ ├── Server.cpp
│ │ ├── Server.dsp
│ │ ├── Server.dsw
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ └── 5.5
│ └── Client
│ ├── Client.cpp
│ ├── Client.dsp
│ ├── Client.dsw
│ ├── Desktop_.ini
│ ├── StdAfx.cpp
│ └── StdAfx.h
├── 06
│ ├── 6.4
│ │ └── Server
│ │ ├── Client.cpp
│ │ ├── Client.h
│ │ ├── res
│ │ │ ├── Server.ico
│ │ │ ├── Server.rc2
│ │ │ └── Thumbs.db
│ │ ├── resource.h
│ │ ├── Server.clw
│ │ ├── Server.cpp
│ │ ├── ServerDlg.cpp
│ │ ├── ServerDlg.h
│ │ ├── Server.dsp
│ │ ├── Server.dsw
│ │ ├── Server.h
│ │ ├── Server.rc
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ └── 6.6
│ └── Client
│ ├── Client.clw
│ ├── Client.cpp
│ ├── ClientDlg.cpp
│ ├── ClientDlg.h
│ ├── Client.dsp
│ ├── Client.dsw
│ ├── Client.h
│ ├── Client.rc
│ ├── res
│ │ ├── Client.ico
│ │ └── Client.rc2
│ ├── resource.h
│ ├── StdAfx.cpp
│ └── StdAfx.h
├── 07
│ ├── 7.11
│ │ └── Client
│ │ ├── ChatDlg.cpp
│ │ ├── ChatDlg.h
│ │ ├── ChatPacket.cpp
│ │ ├── ChatPacket.h
│ │ ├── ChatSocket.cpp
│ │ ├── ChatSocket.h
│ │ ├── Client.aps
│ │ ├── Client.clw
│ │ ├── Client.cpp
│ │ ├── ClientDlg.cpp
│ │ ├── ClientDlg.h
│ │ ├── Client.dsp
│ │ ├── Client.h
│ │ ├── ClientLogin.cpp
│ │ ├── ClientLogin.h
│ │ ├── Client.rc
│ │ ├── ListenSocket.cpp
│ │ ├── ListenSocket.h
│ │ ├── PeerSocket.cpp
│ │ ├── PeerSocket.h
│ │ ├── res
│ │ │ ├── chatter1.ico
│ │ │ ├── Client.ico
│ │ │ ├── Client.rc2
│ │ │ └── Duck.ico
│ │ ├── resource.h
│ │ ├── StdAfx.cpp
│ │ ├── StdAfx.h
│ │ ├── UserInfo.cpp
│ │ └── UserInfo.h
│ └── 7.9
│ └── Server
│ ├── ChatPacket.cpp
│ ├── ChatPacket.h
│ ├── ClientSocket.cpp
│ ├── ClientSocket.h
│ ├── ListenSocket.cpp
│ ├── ListenSocket.h
│ ├── res
│ │ ├── chatter1.ico
│ │ ├── Duck.ico
│ │ ├── Server.ico
│ │ ├── Server.rc2
│ │ └── Thumbs.db
│ ├── resource.h
│ ├── ServerAddressDlg.cpp
│ ├── ServerAddressDlg.h
│ ├── Server.cpp
│ ├── ServerDlg.cpp
│ ├── ServerDlg.h
│ ├── Server.dsp
│ ├── Server.dsw
│ ├── Server.h
│ ├── Server.rc
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── UserInfo.cpp
│ └── UserInfo.h
├── 08
│ ├── 8.10
│ │ └── Client
│ │ ├── Client.clw
│ │ ├── Client.cpp
│ │ ├── ClientDoc.cpp
│ │ ├── ClientDoc.h
│ │ ├── Client.dsp
│ │ ├── Client.dsw
│ │ ├── Client.h
│ │ ├── Client.rc
│ │ ├── ClientView.cpp
│ │ ├── ClientView.h
│ │ ├── down.wav
│ │ ├── LoginDlg.cpp
│ │ ├── LoginDlg.h
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── MySplitterWnd.cpp
│ │ ├── MySplitterWnd.h
│ │ ├── RenjuSocket.cpp
│ │ ├── RenjuSocket.h
│ │ ├── res
│ │ │ ├── bkwood.bmp
│ │ │ ├── black.bmp
│ │ │ ├── ClientDoc.ico
│ │ │ ├── Client.ico
│ │ │ ├── Client.rc2
│ │ │ ├── cursor2.cur
│ │ │ ├── hnwse.cur
│ │ │ ├── icon1.ico
│ │ │ ├── icon3.ico
│ │ │ ├── mask.bmp
│ │ │ ├── RenjuDoc.ico
│ │ │ ├── Renju.ico
│ │ │ ├── Renju.rc2
│ │ │ ├── Thumbs.db
│ │ │ └── white.bmp
│ │ ├── resource.h
│ │ ├── ServerSocket.cpp
│ │ ├── ServerSocket.h
│ │ ├── StdAfx.cpp
│ │ ├── StdAfx.h
│ │ ├── UserInfo.cpp
│ │ ├── UserInfo.h
│ │ ├── UserView.cpp
│ │ └── UserView.h
│ └── 8.8
│ └── Server
│ ├── ClientSocket.cpp
│ ├── ClientSocket.h
│ ├── res
│ │ ├── chatter1.ico
│ │ ├── Duck.ico
│ │ ├── icon1.ico
│ │ ├── icon2.ico
│ │ ├── icon3.ico
│ │ ├── Server.ico
│ │ ├── Server.rc2
│ │ └── Thumbs.db
│ ├── resource.h
│ ├── ServerAddrDlg.cpp
│ ├── ServerAddrDlg.h
│ ├── Server.clw
│ ├── Server.cpp
│ ├── ServerDlg.cpp
│ ├── ServerDlg.h
│ ├── Server.dsp
│ ├── Server.dsw
│ ├── Server.h
│ ├── Server.rc
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── UserInfo.cpp
│ └── UserInfo.h
├── 09
│ ├── 9.11
│ │ └── Client
│ │ ├── Client.clw
│ │ ├── Client.cpp
│ │ ├── ClientDlg.cpp
│ │ ├── ClientDlg.h
│ │ ├── Client.dsp
│ │ ├── Client.dsw
│ │ ├── Client.h
│ │ ├── Client.rc
│ │ ├── LookupSocket.cpp
│ │ ├── LookupSocket.h
│ │ ├── res
│ │ │ ├── Client.ico
│ │ │ └── Client.rc2
│ │ ├── resource.h
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ └── 9.9
│ └── Server
│ ├── ClientSocket.cpp
│ ├── ClientSocket.h
│ ├── Dict.mdb
│ ├── EditWordDlg.cpp
│ ├── EditWordDlg.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── msado15.tlh
│ ├── msado15.tli
│ ├── res
│ │ ├── ServerDoc.ico
│ │ ├── Server.ico
│ │ ├── Server.rc2
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── ServerAddrDlg.cpp
│ ├── ServerAddrDlg.h
│ ├── Server.clw
│ ├── Server.cpp
│ ├── ServerDoc.cpp
│ ├── ServerDoc.h
│ ├── Server.dsp
│ ├── Server.dsw
│ ├── Server.h
│ ├── Server.rc
│ ├── ServerView.cpp
│ ├── ServerView.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── UnknWordDlg.cpp
│ └── UnknWordDlg.h
├── 10
│ ├── 10.6
│ │ └── Server
│ │ ├── ClientContext.cpp
│ │ ├── ClientContext.h
│ │ ├── ClientManager.cpp
│ │ ├── ClientManager.h
│ │ ├── Exam.mdb
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── msado15.tlh
│ │ ├── msado15.tli
│ │ ├── res
│ │ │ ├── ServerDoc.ico
│ │ │ ├── Server.ico
│ │ │ ├── Server.rc2
│ │ │ └── Toolbar.bmp
│ │ ├── Resource.h
│ │ ├── ServerAddrDlg.cpp
│ │ ├── ServerAddrDlg.h
│ │ ├── Server.aps
│ │ ├── Server.clw
│ │ ├── Server.cpp
│ │ ├── ServerDoc.cpp
│ │ ├── ServerDoc.h
│ │ ├── Server.dsp
│ │ ├── Server.dsw
│ │ ├── Server.h
│ │ ├── Server.rc
│ │ ├── ServerView.cpp
│ │ ├── ServerView.h
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ └── 10.8
│ └── Client
│ ├── Client.clw
│ ├── Client.cpp
│ ├── ClientDlg.cpp
│ ├── ClientDlg.h
│ ├── Client.dsp
│ ├── Client.dsw
│ ├── Client.h
│ ├── Client.rc
│ ├── ClientSocket.cpp
│ ├── ClientSocket.h
│ ├── Item.cpp
│ ├── Item.h
│ ├── LoginDlg.cpp
│ ├── LoginDlg.h
│ ├── res
│ │ ├── Client.ico
│ │ └── Client.rc2
│ ├── resource.h
│ ├── StdAfx.cpp
│ └── StdAfx.h
└── 光盘使用说明.DOC
55 directories, 294 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论