在好例子网,分享、交流、成长!
您当前所在位置:首页C/C++ 开发实例C/C++语言基础 → VC++使用Socket2网络编程(绝版好书10本)

VC++使用Socket2网络编程(绝版好书10本)

C/C++语言基础

下载此实例
  • 开发语言:C/C++
  • 实例大小:22.85M
  • 下载次数:6
  • 浏览次数:25
  • 发布时间:2023-10-10
  • 实例类别:C/C++语言基础
  • 发 布 人:chenxiaolan
  • 文件格式:.rar
  • 所需积分:2
 相关标签: Socket VC++ 网络编程 c++ sOC

实例介绍

【实例简介】VC 使用Socket2网络编程(绝版好书10本)
VC 使用Socket2网络编程(绝版好书10本) IPv6 Network Programming.pdf ...Windows网络编程(第二版免费).pdf Window高级编程指南.pdf winpcap编程大全(普通下载).chm WinSock-CJQ.pdf WinSocketAPIv22c.pdf

【实例截图】

from clipboard

【核心代码】

.
├── IPv6 Network Programming.pdf
├── Network_Programming_for_Microsoft_Windows_-2nd_Edition.CHM
├── Programming Winsock-Arthur Dumas.pdf
├── TCPIP sockets in C-Practical Guide for Programmers-2nd ed.pdf
├── VC 使用Socket2网络编程(绝版好书10本)_Socket2网络编程.rar
├── WINDOWS SOCKETS规范及应用-WINDOWS网络编程接口.chm
├── WinSock-CJQ.pdf
├── WinSocketAPIv22c.pdf
├── Windows Socket2网络编程技术PDF 源码.rar
├── Windows网络编程(第二版免费).pdf
└── wincap
    ├── Examples-pcap
    │   ├── GNUmakefile
    │   ├── MakeaAll.dsw
    │   ├── MakeaAll.sln
    │   ├── UDPdump
    │   │   ├── GNUmakefile
    │   │   ├── UDPdump.dsp
    │   │   ├── UDPdump.dsw
    │   │   ├── UDPdump.vcproj
    │   │   └── udpdump.c
    │   ├── basic_dump
    │   │   ├── GNUmakefile
    │   │   ├── basic_dump.c
    │   │   ├── basic_dump.dsp
    │   │   ├── basic_dump.dsw
    │   │   └── basic_dump.vcproj
    │   ├── basic_dump_ex
    │   │   ├── GNUmakefile
    │   │   ├── basic_dump_ex.c
    │   │   ├── basic_dump_ex.dsp
    │   │   ├── basic_dump_ex.dsw
    │   │   └── basic_dump_ex.vcproj
    │   ├── iflist
    │   │   ├── GNUmakefile
    │   │   ├── iflist.c
    │   │   ├── iflist.dsp
    │   │   ├── iflist.dsw
    │   │   └── iflist.vcproj
    │   ├── pcap_filter
    │   │   ├── GNUmakefile
    │   │   ├── Makefile.unix
    │   │   ├── pcap_filter.c
    │   │   ├── pcap_filter.dsp
    │   │   ├── pcap_filter.dsw
    │   │   └── pcap_filter.vcproj
    │   ├── pktdump_ex
    │   │   ├── GNUmakefile
    │   │   ├── pktdump_ex.c
    │   │   ├── pktdump_ex.dsp
    │   │   ├── pktdump_ex.dsw
    │   │   └── pktdump_ex.vcproj
    │   ├── readfile
    │   │   ├── GNUmakefile
    │   │   ├── readfile.c
    │   │   ├── readfile.dsp
    │   │   ├── readfile.dsw
    │   │   └── readfile.vcproj
    │   ├── readfile_ex
    │   │   ├── GNUmakefile
    │   │   ├── readfile_ex.c
    │   │   ├── readfile_ex.dsp
    │   │   ├── readfile_ex.dsw
    │   │   └── readfile_ex.vcproj
    │   ├── savedump
    │   │   ├── GNUmakefile
    │   │   ├── savedump.c
    │   │   ├── savedump.dsp
    │   │   ├── savedump.dsw
    │   │   └── savedump.vcproj
    │   └── sendpack
    │       ├── GNUmakefile
    │       ├── sendpack.c
    │       ├── sendpack.dsp
    │       ├── sendpack.dsw
    │       └── sendpack.vcproj
    ├── Examples-remote
    │   ├── MakeAll.sln
    │   ├── MakeaAll.dsw
    │   ├── PacketDriver
    │   │   ├── GetMacAddress
    │   │   │   ├── GetMacAddress.c
    │   │   │   ├── GetMacAddress.dsp
    │   │   │   └── GetMacAddress.vcproj
    │   │   ├── TestPacketCapture
    │   │   │   ├── TestPacketCapture.c
    │   │   │   ├── TestPacketCapture.dsp
    │   │   │   └── TestPacketCapture.vcproj
    │   │   ├── TestPacketSend
    │   │   │   ├── TestPacketSend.c
    │   │   │   ├── TestPacketSend.dsp
    │   │   │   └── TestPacketSend.vcproj
    │   │   └── readme.txt
    │   ├── UDPdump
    │   │   ├── UDPdump.dsp
    │   │   ├── UDPdump.dsw
    │   │   ├── UDPdump.vcproj
    │   │   └── udpdump.c
    │   ├── UserLevelBridge
    │   │   ├── UserBridge.c
    │   │   ├── UserBridge.dsp
    │   │   ├── UserBridge.dsw
    │   │   └── UserBridge.vcproj
    │   ├── iflist
    │   │   ├── iflist.c
    │   │   ├── iflist.dsp
    │   │   ├── iflist.dsw
    │   │   └── iflist.vcproj
    │   ├── misc
    │   │   ├── MakeAll.sln
    │   │   ├── MakeaAll.dsw
    │   │   ├── basic_dump.c
    │   │   ├── basic_dump.dsp
    │   │   ├── basic_dump.vcproj
    │   │   ├── basic_dump_ex.c
    │   │   ├── basic_dump_ex.dsp
    │   │   ├── basic_dump_ex.vcproj
    │   │   ├── readfile.c
    │   │   ├── readfile.dsp
    │   │   ├── readfile.vcproj
    │   │   ├── readfile_ex.c
    │   │   ├── readfile_ex.dsp
    │   │   ├── readfile_ex.vcproj
    │   │   ├── savedump.c
    │   │   ├── savedump.dsp
    │   │   ├── savedump.vcproj
    │   │   ├── sendpack.c
    │   │   ├── sendpack.dsp
    │   │   └── sendpack.vcproj
    │   ├── pcap_filter
    │   │   ├── pcap_filter.c
    │   │   ├── pcap_filter.dsp
    │   │   ├── pcap_filter.dsw
    │   │   └── pcap_filter.vcproj
    │   ├── pcap_fopen
    │   │   ├── pcap_fopen.cpp
    │   │   └── pcap_fopen.vcproj
    │   ├── pktdump_ex
    │   │   ├── pktdump_ex.c
    │   │   ├── pktdump_ex.dsp
    │   │   ├── pktdump_ex.dsw
    │   │   └── pktdump_ex.vcproj
    │   ├── sendcap
    │   │   ├── sencap.dsw
    │   │   ├── sendcap.c
    │   │   ├── sendcap.dsp
    │   │   └── sendcap.vcproj
    │   ├── smp_1
    │   │   ├── smp_1.c
    │   │   ├── smp_1.dsp
    │   │   ├── smp_1.dsw
    │   │   └── smp_1.vcproj
    │   └── tcptop
    │       ├── tcptop.c
    │       ├── tcptop.dsp
    │       ├── tcptop.dsw
    │       └── tcptop.vcproj
    ├── Include
    │   ├── Packet32.h
    │   ├── Win32-Extensions.h
    │   ├── bittypes.h
    │   ├── ip6_misc.h
    │   ├── pcap
    │   │   ├── bluetooth.h
    │   │   ├── bpf.h
    │   │   ├── namedb.h
    │   │   ├── pcap.h
    │   │   ├── sll.h
    │   │   ├── usb.h
    │   │   └── vlan.h
    │   ├── pcap-bpf.h
    │   ├── pcap-namedb.h
    │   ├── pcap-stdinc.h
    │   ├── pcap.h
    │   └── remote-ext.h
    ├── Lib
    │   ├── Packet.lib
    │   ├── libpacket.a
    │   ├── libwpcap.a
    │   ├── wpcap.lib
    │   └── x64
    │       ├── Packet.lib
    │       └── wpcap.lib
    ├── WinPcap_4_1_2.exe
    └── docs
        ├── WinPcap_docs.html
        └── html
            ├── Packet_8h.html
            ├── Packet_8h_source.html
            ├── Win32-Extensions_8h.html
            ├── Win32-Extensions_8h_source.html
            ├── annotated.html
            ├── classes.html
            ├── daemon_8h.html
            ├── daemon_8h_source.html
            ├── deprecated.html
            ├── doxygen.png
            ├── doxygen__groups_8txt.html
            ├── dump.gif
            ├── encoding.gif
            ├── fileconf_8h.html
            ├── fileconf_8h_source.html
            ├── files.html
            ├── ftv2blank.png
            ├── ftv2doc.png
            ├── ftv2folderclosed.png
            ├── ftv2folderopen.png
            ├── ftv2lastnode.png
            ├── ftv2link.png
            ├── ftv2mlastnode.png
            ├── ftv2mnode.png
            ├── ftv2node.png
            ├── ftv2plastnode.png
            ├── ftv2pnode.png
            ├── ftv2vertline.png
            ├── funcs_2pcap_8h.html
            ├── funcs_2pcap_8h_source.html
            ├── functions.html
            ├── functions_vars.html
            ├── globals.html
            ├── globals_0x62.html
            ├── globals_0x63.html
            ├── globals_0x64.html
            ├── globals_0x65.html
            ├── globals_0x66.html
            ├── globals_0x67.html
            ├── globals_0x68.html
            ├── globals_0x69.html
            ├── globals_0x6a.html
            ├── globals_0x6b.html
            ├── globals_0x6d.html
            ├── globals_0x6e.html
            ├── globals_0x6f.html
            ├── globals_0x70.html
            ├── globals_0x72.html
            ├── globals_0x73.html
            ├── globals_0x74.html
            ├── globals_0x75.html
            ├── globals_defs.html
            ├── globals_enum.html
            ├── globals_eval.html
            ├── globals_func.html
            ├── globals_type.html
            ├── globals_vars.html
            ├── group__NPF.html
            ├── group__NPF__code.html
            ├── group__NPF__include.html
            ├── group__NPF__ioctl.html
            ├── group__NPF__jitter.html
            ├── group__compilation.html
            ├── group__internals.html
            ├── group__language.html
            ├── group__packetapi.html
            ├── group__remote.html
            ├── group__remote__auth__methods.html
            ├── group__remote__open__flags.html
            ├── group__remote__pri__func.html
            ├── group__remote__pri__struct.html
            ├── group__remote__samp__methods.html
            ├── group__remote__source__ID.html
            ├── group__remote__source__string.html
            ├── group__remote__struct.html
            ├── group__remotefunc.html
            ├── group__wpcap.html
            ├── group__wpcap__def.html
            ├── group__wpcap__tut.html
            ├── group__wpcap__tut1.html
            ├── group__wpcap__tut2.html
            ├── group__wpcap__tut3.html
            ├── group__wpcap__tut4.html
            ├── group__wpcap__tut5.html
            ├── group__wpcap__tut6.html
            ├── group__wpcap__tut7.html
            ├── group__wpcap__tut8.html
            ├── group__wpcap__tut9.html
            ├── group__wpcapfunc.html
            ├── group__wpcapsamps.html
            ├── incs_2pcap_8h.html
            ├── incs_2pcap_8h_source.html
            ├── index.hhc
            ├── index.hhk
            ├── index.hhp
            ├── index.html
            ├── internals-arch.gif
            ├── ioctls_8h.html
            ├── ioctls_8h_source.html
            ├── jitter_8h.html
            ├── jitter_8h_source.html
            ├── main.html
            ├── main_8txt.html
            ├── modules.html
            ├── npf-dump.gif
            ├── npf-ndis.gif
            ├── npf-npf.gif
            ├── pages.html
            ├── pcap-remote_8h.html
            ├── pcap-remote_8h_source.html
            ├── remote-ext_8h.html
            ├── remote-ext_8h_source.html
            ├── rpcapd_8h.html
            ├── rpcapd_8h_source.html
            ├── stats.gif
            ├── stats_wpcap.gif
            ├── structJIT__BPF__Filter.html
            ├── structPacketHeader.html
            ├── struct__DEVICE__EXTENSION.html
            ├── struct__INTERNAL__REQUEST.html
            ├── struct__OPEN__INSTANCE.html
            ├── struct__PACKET__OID__DATA.html
            ├── struct__PACKET__RESERVED.html
            ├── struct____CPU__Private__Data.html
            ├── structactive__pars.html
            ├── structactivehosts.html
            ├── structbinary__stream.html
            ├── structdaemon__slpars.html
            ├── structpacket__file__header.html
            ├── structpcap__addr.html
            ├── structpcap__file__header.html
            ├── structpcap__if.html
            ├── structpcap__pkthdr.html
            ├── structpcap__rmtauth.html
            ├── structpcap__samp.html
            ├── structpcap__send__queue.html
            ├── structpcap__stat.html
            ├── structrpcap__auth.html
            ├── structrpcap__filter.html
            ├── structrpcap__filterbpf__insn.html
            ├── structrpcap__findalldevs__if.html
            ├── structrpcap__findalldevs__ifaddr.html
            ├── structrpcap__header.html
            ├── structrpcap__openreply.html
            ├── structrpcap__pkthdr.html
            ├── structrpcap__sampling.html
            ├── structrpcap__startcapreply.html
            ├── structrpcap__startcapreq.html
            ├── structrpcap__stats.html
            ├── structsf__pkthdr.html
            ├── style.css
            ├── tab_b.gif
            ├── tab_l.gif
            ├── tab_r.gif
            ├── tabs.css
            ├── tree.html
            ├── utils_8h.html
            ├── utils_8h_source.html
            ├── win32-svc_8h.html
            ├── win32-svc_8h_source.html
            ├── winpcap.gif
            ├── winpcap_small.gif
            ├── wpcap__remote_8htm.html
            ├── wpcap__remote_8htm_source.html
            ├── wpcap__tut1_8txt.html
            ├── wpcap__tut2_8txt.html
            ├── wpcap__tut3_8txt.html
            ├── wpcap__tut4_8txt.html
            ├── wpcap__tut5_8txt.html
            ├── wpcap__tut6_8txt.html
            ├── wpcap__tut7_8txt.html
            ├── wpcap__tut8_8txt.html
            ├── wpcap__tut9_8txt.html
            └── wpcap__tut_8txt.html

33 directories, 328 files


实例下载地址

VC++使用Socket2网络编程(绝版好书10本)

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警