实例介绍
网络编程实用教程(第二版)-源代码-叶树华
【实例截图】
【核心代码】
网络编程实用教程(第二版)-源代码-叶树华
└── 21976-code
├── 网络编程实用教程第二版_源程序清单
│ └── 网络编程实用教程第二版_源程序清单
│ └── 网络编程实用教程第二版_相关章节实例源程序清单.doc
└── 网络编程实用教程第二版_各章的示例源程序
└── 网络编程实用教程第二版_各章的示例源程序
├── 第05章
│ ├── 多点聊天
│ │ └── 3_tc_ts纯对话框
│ │ ├── tc
│ │ │ ├── CSocket.cpp
│ │ │ ├── CSocket.h
│ │ │ ├── Msg.cpp
│ │ │ ├── Msg.h
│ │ │ ├── ReadMe.txt
│ │ │ ├── StdAfx.cpp
│ │ │ ├── StdAfx.h
│ │ │ ├── res
│ │ │ │ ├── tc.ico
│ │ │ │ └── tc.rc2
│ │ │ ├── resource.h
│ │ │ ├── tc.aps
│ │ │ ├── tc.clw
│ │ │ ├── tc.cpp
│ │ │ ├── tc.dsp
│ │ │ ├── tc.dsw
│ │ │ ├── tc.h
│ │ │ ├── tc.ncb
│ │ │ ├── tc.opt
│ │ │ ├── tc.plg
│ │ │ ├── tc.rc
│ │ │ ├── tcDlg.cpp
│ │ │ └── tcDlg.h
│ │ └── ts
│ │ ├── CSocket.cpp
│ │ ├── CSocket.h
│ │ ├── LSocket.cpp
│ │ ├── LSocket.h
│ │ ├── Msg.cpp
│ │ ├── Msg.h
│ │ ├── ReadMe.txt
│ │ ├── StdAfx.cpp
│ │ ├── StdAfx.h
│ │ ├── res
│ │ │ ├── ts.ico
│ │ │ └── ts.rc2
│ │ ├── resource.h
│ │ ├── ts.aps
│ │ ├── ts.clw
│ │ ├── ts.cpp
│ │ ├── ts.dsp
│ │ ├── ts.dsw
│ │ ├── ts.h
│ │ ├── ts.ncb
│ │ ├── ts.opt
│ │ ├── ts.plg
│ │ ├── ts.rc
│ │ ├── tsDlg.cpp
│ │ └── tsDlg.h
│ └── 点对点聊天
│ ├── TALKC
│ │ ├── MySocket.cpp
│ │ ├── MySocket.h
│ │ ├── RES
│ │ │ ├── TALKC.ICO
│ │ │ └── TALKC.RC2
│ │ ├── RESOURCE.H
│ │ ├── ReadMe.txt
│ │ ├── StdAfx.cpp
│ │ ├── StdAfx.h
│ │ ├── TALKC.APS
│ │ ├── TALKC.CLW
│ │ ├── TALKC.CPP
│ │ ├── TALKC.DSP
│ │ ├── TALKC.DSW
│ │ ├── TALKC.H
│ │ ├── TALKC.NCB
│ │ ├── TALKC.OPT
│ │ ├── TALKC.PLG
│ │ ├── TALKC.RC
│ │ ├── talkcDlg.cpp
│ │ └── talkcDlg.h
│ ├── TALKS
│ │ ├── MySocket.cpp
│ │ ├── MySocket.h
│ │ ├── RES
│ │ │ ├── TALKS.ICO
│ │ │ └── TALKS.RC2
│ │ ├── RESOURCE.H
│ │ ├── ReadMe.txt
│ │ ├── StdAfx.cpp
│ │ ├── StdAfx.h
│ │ ├── TALKS.APS
│ │ ├── TALKS.CLW
│ │ ├── TALKS.CPP
│ │ ├── TALKS.DSP
│ │ ├── TALKS.DSW
│ │ ├── TALKS.H
│ │ ├── TALKS.NCB
│ │ ├── TALKS.OPT
│ │ ├── TALKS.PLG
│ │ ├── TALKS.RC
│ │ ├── talksDlg.cpp
│ │ └── talksDlg.h
│ ├── 点对点交谈的客户端程序.doc
│ └── 点对点交谈的服务器程序.doc
├── 第06章
│ └── Ftp
│ ├── Debug
│ │ ├── Ftp.exe
│ │ ├── Ftp.ilk
│ │ ├── Ftp.obj
│ │ ├── Ftp.pch
│ │ ├── Ftp.pdb
│ │ ├── Ftp.res
│ │ ├── FtpDlg.obj
│ │ ├── StdAfx.obj
│ │ ├── vc60.idb
│ │ └── vc60.pdb
│ ├── Ftp.aps
│ ├── Ftp.clw
│ ├── Ftp.cpp
│ ├── Ftp.dsp
│ ├── Ftp.dsw
│ ├── Ftp.h
│ ├── Ftp.ncb
│ ├── Ftp.opt
│ ├── Ftp.plg
│ ├── Ftp.rc
│ ├── FtpDlg.cpp
│ ├── FtpDlg.h
│ ├── ReadMe.txt
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── res
│ │ ├── Ftp.ico
│ │ └── Ftp.rc2
│ └── resource.h
├── 第09章
│ ├── Web服务器
│ │ ├── GenericServer.cpp
│ │ ├── GenericServer.h
│ │ ├── HTML
│ │ │ ├── fnf.html
│ │ │ └── mna.html
│ │ ├── HTTPServer.cpp
│ │ ├── HTTPServer.h
│ │ ├── Log.cpp
│ │ ├── Log.h
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── ReadMe.txt
│ │ ├── StdAfx.cpp
│ │ ├── StdAfx.h
│ │ ├── WebServer.aps
│ │ ├── WebServer.clw
│ │ ├── WebServer.cpp
│ │ ├── WebServer.dsp
│ │ ├── WebServer.dsw
│ │ ├── WebServer.h
│ │ ├── WebServer.ncb
│ │ ├── WebServer.opt
│ │ ├── WebServer.plg
│ │ ├── WebServer.rc
│ │ ├── WebServerDlg.cpp
│ │ ├── WebServerDlg.h
│ │ ├── res
│ │ │ ├── WebServer.ico
│ │ │ └── WebServer.rc2
│ │ └── resource.h
│ ├── Web服务器.doc
│ └── myWeb
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── ReadMe.txt
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── myWeb.aps
│ ├── myWeb.clw
│ ├── myWeb.cpp
│ ├── myWeb.dsp
│ ├── myWeb.dsw
│ ├── myWeb.h
│ ├── myWeb.ncb
│ ├── myWeb.opt
│ ├── myWeb.plg
│ ├── myWeb.rc
│ ├── myWebDoc.cpp
│ ├── myWebDoc.h
│ ├── myWebView.cpp
│ ├── myWebView.h
│ ├── res
│ │ ├── Toolbar.bmp
│ │ ├── myWeb.ico
│ │ ├── myWeb.rc2
│ │ └── myWebDoc.ico
│ └── resource.h
└── 第10章
├── debug.doc
├── pop3
│ ├── ReadMe.txt
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── mySock.cpp
│ ├── mySock.h
│ ├── pop3.aps
│ ├── pop3.clw
│ ├── pop3.cpp
│ ├── pop3.dsp
│ ├── pop3.dsw
│ ├── pop3.h
│ ├── pop3.ncb
│ ├── pop3.opt
│ ├── pop3.plg
│ ├── pop3.rc
│ ├── pop3Dlg.cpp
│ ├── pop3Dlg.h
│ ├── res
│ │ ├── pop3.ico
│ │ └── pop3.rc2
│ └── resource.h
├── pop3.doc
├── pop3高级程序开发
│ ├── ChooseDlg.cpp
│ ├── ChooseDlg.h
│ ├── Gniazdo.cpp
│ ├── Gniazdo.h
│ ├── Pop31.cpp
│ ├── Pop31.h
│ ├── ReadMe.txt
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── ViewDlg.cpp
│ ├── ViewDlg.h
│ ├── pop3.aps
│ ├── pop3.clw
│ ├── pop3.cpp
│ ├── pop3.dsp
│ ├── pop3.dsw
│ ├── pop3.h
│ ├── pop3.ncb
│ ├── pop3.opt
│ ├── pop3.plg
│ ├── pop3.rc
│ ├── pop3Dlg.cpp
│ ├── pop3Dlg.h
│ ├── res
│ │ ├── pop3.ico
│ │ └── pop3.rc2
│ └── resource.h
├── pop3高级程序开发.doc
├── smtp
│ ├── Base64.cpp
│ ├── Base64.h
│ ├── ReadMe.txt
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── mySock.cpp
│ ├── mySock.h
│ ├── res
│ │ ├── smtp.ico
│ │ └── smtp.rc2
│ ├── resource.h
│ ├── smtp.aps
│ ├── smtp.clw
│ ├── smtp.cpp
│ ├── smtp.dsp
│ ├── smtp.dsw
│ ├── smtp.h
│ ├── smtp.ncb
│ ├── smtp.opt
│ ├── smtp.plg
│ ├── smtp.rc
│ ├── smtpDlg.cpp
│ └── smtpDlg.h
├── smtp.doc
├── 邮件发送高级编程
│ ├── Base64Coder.cpp
│ ├── Base64Coder.h
│ ├── ReadMe.txt
│ ├── Resource.h
│ ├── SMTPwithAttach.aps
│ ├── SMTPwithAttach.clw
│ ├── SMTPwithAttach.cpp
│ ├── SMTPwithAttach.dsp
│ ├── SMTPwithAttach.dsw
│ ├── SMTPwithAttach.h
│ ├── SMTPwithAttach.ncb
│ ├── SMTPwithAttach.opt
│ ├── SMTPwithAttach.plg
│ ├── SMTPwithAttach.rc
│ ├── SMTPwithAttachDlg.cpp
│ ├── SMTPwithAttachDlg.h
│ ├── Smtp.cpp
│ ├── Smtp.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── glob-md5.h
│ ├── md5.cpp
│ ├── md5.h
│ └── res
│ ├── SMTPwithAttach.ico
│ └── SMTPwithAttach.rc2
└── 邮件发送高级编程.doc
36 directories, 268 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论