├── ARP ├── Debug │ ├── stdafx.obj │ ├── vc120.idb │ ├── vc120.pdb │ ├── 发送ARP获取IP与MAC.Build.CppClean.log │ ├── 发送ARP获取IP与MAC.log │ ├── 发送ARP获取IP与MAC.obj │ ├── 发送ARP获取IP与MAC.pch │ └── 发送ARP获取IP与MAC.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── cl.command.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ └── 发送ARP获取IP与MAC.lastbuildstate ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h ├── targetver.h ├── 发送ARP获取IP与MAC.cpp ├── 发送ARP获取IP与MAC.vcxproj ├── 发送ARP获取IP与MAC.vcxproj.filters └── 发送ARP获取IP与MAC.vcxproj.user ├── README.md ├── Reliable-UDP ├── 1.jpg ├── 2.jpg ├── 3.jpg ├── client.cpp ├── helloworld.txt └── server.cpp ├── SimperRouter ├── Debug │ ├── SimperRouter.Build.CppClean.log │ ├── SimperRouter.lastbuildstate │ ├── SimperRouter.log │ ├── SimperRouter.obj │ ├── SimperRouter.pch │ ├── SimperRouter.res │ ├── SimperRouter.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SimperRouter.lastbuildstate │ │ ├── cl.command.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── rc.command.1.tlog │ │ ├── rc.read.1.tlog │ │ └── rc.write.1.tlog │ ├── SimperRouter.unsuccessfulbuild │ ├── SimperRouterDlg.obj │ ├── stdafx.obj │ ├── vc120.idb │ └── vc120.pdb ├── ReadMe.txt ├── Release │ ├── SimperRouter.Build.CppClean.log │ ├── SimperRouter.log │ ├── SimperRouter.obj │ ├── SimperRouter.pch │ ├── SimperRouter.res │ ├── SimperRouter.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SimperRouter.lastbuildstate │ │ ├── cl.command.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── rc.command.1.tlog │ │ ├── rc.read.1.tlog │ │ └── rc.write.1.tlog │ ├── SimperRouterDlg.obj │ ├── stdafx.obj │ └── vc120.pdb ├── SimperRouter.aps ├── SimperRouter.cpp ├── SimperRouter.h ├── SimperRouter.rc ├── SimperRouter.vcxproj ├── SimperRouter.vcxproj.filters ├── SimperRouterDlg.cpp ├── SimperRouterDlg.h ├── res │ ├── SimperRouter.ico │ └── SimperRouter.rc2 ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── WinPcap └── 数据包获取 │ ├── Debug │ ├── stdafx.obj │ ├── vc120.idb │ ├── vc120.pdb │ ├── 数据包获取.Build.CppClean.log │ ├── 数据包获取.log │ ├── 数据包获取.obj │ ├── 数据包获取.pch │ └── 数据包获取.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── cl.command.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ └── 数据包获取.lastbuildstate │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ ├── targetver.h │ ├── 数据包获取.cpp │ ├── 数据包获取.vcxproj │ ├── 数据包获取.vcxproj.filters │ └── 数据包获取.vcxproj.user └── 聊天小程序(单播) ├── Client ├── Client.cpp ├── Client.vcxproj ├── Client.vcxproj.filters ├── Debug │ ├── Client.log │ ├── Client.obj │ ├── Client.pch │ ├── Client.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── Client.lastbuildstate │ │ ├── cl.command.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── stdafx.obj │ ├── vc120.idb │ └── vc120.pdb ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h └── Server ├── Debug ├── Server.Build.CppClean.log ├── Server.obj ├── Server.pch ├── Server.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── Server.lastbuildstate │ ├── cl.command.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ └── link.write.1.tlog ├── stdafx.obj ├── vc120.idb ├── vc120.pdb ├── 聊天室.Build.CppClean.log ├── 聊天室.log └── 聊天室.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── cl.command.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ └── 聊天室.lastbuildstate ├── ReadMe.txt ├── Server.cpp ├── stdafx.cpp ├── stdafx.h ├── targetver.h ├── 聊天室.vcxproj └── 聊天室.vcxproj.filters /ARP/Debug/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/ARP/Debug/stdafx.obj -------------------------------------------------------------------------------- /ARP/Debug/vc120.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/ARP/Debug/vc120.idb -------------------------------------------------------------------------------- /ARP/Debug/vc120.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/ARP/Debug/vc120.pdb -------------------------------------------------------------------------------- /ARP/Debug/发送ARP获取IP与MAC.Build.CppClean.log: -------------------------------------------------------------------------------- 1 | d:\winpcap\projects\发送arp获取ip与mac\发送arp获取ip与mac\debug\vc120.pdb 2 | d:\winpcap\projects\发送arp获取ip与mac\发送arp获取ip与mac\debug\vc120.idb 3 | d:\winpcap\projects\发送arp获取ip与mac\发送arp获取ip与mac\debug\发送arp获取ip与mac.tlog\cl.command.1.tlog 4 | d:\winpcap\projects\发送arp获取ip与mac\发送arp获取ip与mac\debug\发送arp获取ip与mac.tlog\cl.read.1.tlog 5 | d:\winpcap\projects\发送arp获取ip与mac\发送arp获取ip与mac\debug\发送arp获取ip与mac.tlog\cl.write.1.tlog 6 | -------------------------------------------------------------------------------- /ARP/Debug/发送ARP获取IP与MAC.log: -------------------------------------------------------------------------------- 1 | 生成启动时间为 2020/12/4 20:50:05。 2 | 1>项目“D:\Winpcap\Projects\发送ARP获取IP与MAC\发送ARP获取IP与MAC\发送ARP获取IP与MAC.vcxproj”在节点 2 上(Build 个目标)。 3 | 1>ClCompile: 4 | C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\CL.exe /c /ID:\Winpcap\WpdPack_4_1_2\WpdPack\Include /ZI /nologo /W3 /WX- /Od /Oy- /D WIN32 /D _DEBUG /D _CONSOLE /D _LIB /D _UNICODE /D UNICODE /Gm /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Yu"stdafx.h" /Fp"Debug\发送ARP获取IP与MAC.pch" /Fo"Debug\\" /Fd"Debug\vc120.pdb" /Gd /TP /analyze- /errorReport:prompt "发送ARP获取IP与MAC.cpp" 5 | 发送ARP获取IP与MAC.cpp 6 | 1>d:\winpcap\projects\发送arp获取ip与mac\发送arp获取ip与mac\发送arp获取ip与mac.cpp(12): warning C4091: “typedef ”: 没有声明变量时忽略“Ethernet_head”的左侧 7 | 1>d:\winpcap\projects\发送arp获取ip与mac\发送arp获取ip与mac\发送arp获取ip与mac.cpp(26): warning C4091: “typedef ”: 没有声明变量时忽略“ARPFrame_t”的左侧 8 | 1>d:\winpcap\projects\发送arp获取ip与mac\发送arp获取ip与mac\发送arp获取ip与mac.cpp(68): warning C4101: “res”: 未引用的局部变量 9 | 1>d:\winpcap\projects\发送arp获取ip与mac\发送arp获取ip与mac\发送arp获取ip与mac.cpp(65): warning C4101: “timestr”: 未引用的局部变量 10 | 1>d:\winpcap\projects\发送arp获取ip与mac\发送arp获取ip与mac\发送arp获取ip与mac.cpp(60): warning C4101: “a”: 未引用的局部变量 11 | 1>d:\winpcap\projects\发送arp获取ip与mac\发送arp获取ip与mac\发送arp获取ip与mac.cpp(64): warning C4101: “local_tv_sec”: 未引用的局部变量 12 | 1>d:\winpcap\projects\发送arp获取ip与mac\发送arp获取ip与mac\发送arp获取ip与mac.cpp(63): warning C4101: “ltime”: 未引用的局部变量 13 | 1>d:\winpcap\projects\发送arp获取ip与mac\发送arp获取ip与mac\发送arp获取ip与mac.cpp(182): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. 14 | c:\program files (x86)\microsoft visual studio 12.0\vc\include\stdio.h(356) : 参见“sprintf”的声明 15 | 1>d:\winpcap\projects\发送arp获取ip与mac\发送arp获取ip与mac\发送arp获取ip与mac.cpp(277): warning C4996: 'scanf': This function or variable may be unsafe. Consider using scanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. 16 | c:\program files (x86)\microsoft visual studio 12.0\vc\include\stdio.h(283) : 参见“scanf”的声明 17 | 1>d:\winpcap\projects\发送arp获取ip与mac\发送arp获取ip与mac\发送arp获取ip与mac.cpp(130): warning C4700: 使用了未初始化的局部变量“recvthread” 18 | Link: 19 | C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\link.exe /ERRORREPORT:PROMPT /OUT:"D:\Winpcap\Projects\发送ARP获取IP与MAC\Debug\发送ARP获取IP与MAC.exe" /INCREMENTAL /NOLOGO /LIBPATH:D:\Winpcap\WpdPack_4_1_2\WpdPack\Lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"D:\Winpcap\Projects\发送ARP获取IP与MAC\Debug\发送ARP获取IP与MAC.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"D:\Winpcap\Projects\发送ARP获取IP与MAC\Debug\发送ARP获取IP与MAC.lib" /MACHINE:X86 Debug\stdafx.obj 20 | "Debug\发送ARP获取IP与MAC.obj" 21 | 发送ARP获取IP与MAC.vcxproj -> D:\Winpcap\Projects\发送ARP获取IP与MAC\Debug\发送ARP获取IP与MAC.exe 22 | 1>已完成生成项目“D:\Winpcap\Projects\发送ARP获取IP与MAC\发送ARP获取IP与MAC\发送ARP获取IP与MAC.vcxproj”(Build 个目标)的操作。 23 | 24 | 生成成功。 25 | 26 | 已用时间 00:00:00.49 27 | -------------------------------------------------------------------------------- /ARP/Debug/发送ARP获取IP与MAC.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/ARP/Debug/发送ARP获取IP与MAC.obj -------------------------------------------------------------------------------- /ARP/Debug/发送ARP获取IP与MAC.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/ARP/Debug/发送ARP获取IP与MAC.pch -------------------------------------------------------------------------------- /ARP/Debug/发送ARP获取IP与MAC.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/ARP/Debug/发送ARP获取IP与MAC.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /ARP/Debug/发送ARP获取IP与MAC.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/ARP/Debug/发送ARP获取IP与MAC.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /ARP/Debug/发送ARP获取IP与MAC.tlog/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/ARP/Debug/发送ARP获取IP与MAC.tlog/cl.command.1.tlog -------------------------------------------------------------------------------- /ARP/Debug/发送ARP获取IP与MAC.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/ARP/Debug/发送ARP获取IP与MAC.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /ARP/Debug/发送ARP获取IP与MAC.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/ARP/Debug/发送ARP获取IP与MAC.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /ARP/Debug/发送ARP获取IP与MAC.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/ARP/Debug/发送ARP获取IP与MAC.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /ARP/Debug/发送ARP获取IP与MAC.tlog/发送ARP获取IP与MAC.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v120:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit 2 | Debug|Win32|D:\Winpcap\Projects\发送ARP获取IP与MAC\| 3 | -------------------------------------------------------------------------------- /ARP/ReadMe.txt: -------------------------------------------------------------------------------- 1 | ======================================================================== 2 | 控制台应用程序:发送ARP获取IP与MAC 项目概述 3 | ======================================================================== 4 | 5 | 应用程序向导已为您创建了此 发送ARP获取IP与MAC 应用程序。 6 | 7 | 本文件概要介绍组成 发送ARP获取IP与MAC 应用程序的每个文件的内容。 8 | 9 | 10 | 发送ARP获取IP与MAC.vcxproj 11 | 这是使用应用程序向导生成的 VC++ 项目的主项目文件,其中包含生成该文件的 Visual C++ 的版本信息,以及有关使用应用程序向导选择的平台、配置和项目功能的信息。 12 | 13 | 发送ARP获取IP与MAC.vcxproj.filters 14 | 这是使用“应用程序向导”生成的 VC++ 项目筛选器文件。它包含有关项目文件与筛选器之间的关联信息。在 IDE 中,通过这种关联,在特定节点下以分组形式显示具有相似扩展名的文件。例如,“.cpp”文件与“源文件”筛选器关联。 15 | 16 | 发送ARP获取IP与MAC.cpp 17 | 这是主应用程序源文件。 18 | 19 | ///////////////////////////////////////////////////////////////////////////// 20 | 其他标准文件: 21 | 22 | StdAfx.h, StdAfx.cpp 23 | 这些文件用于生成名为 发送ARP获取IP与MAC.pch 的预编译头 (PCH) 文件和名为 StdAfx.obj 的预编译类型文件。 24 | 25 | ///////////////////////////////////////////////////////////////////////////// 26 | 其他注释: 27 | 28 | 应用程序向导使用“TODO:”注释来指示应添加或自定义的源代码部分。 29 | 30 | ///////////////////////////////////////////////////////////////////////////// 31 | -------------------------------------------------------------------------------- /ARP/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/ARP/stdafx.cpp -------------------------------------------------------------------------------- /ARP/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/ARP/stdafx.h -------------------------------------------------------------------------------- /ARP/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/ARP/targetver.h -------------------------------------------------------------------------------- /ARP/发送ARP获取IP与MAC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/ARP/发送ARP获取IP与MAC.cpp -------------------------------------------------------------------------------- /ARP/发送ARP获取IP与MAC.vcxproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | Win32 7 | 8 | 9 | Release 10 | Win32 11 | 12 | 13 | 14 | {58AD7363-BD1A-4EA4-97CE-FA9A99BD94C5} 15 | Win32Proj 16 | 发送ARP获取IP与MAC 17 | 18 | 19 | 20 | Application 21 | true 22 | v120 23 | Unicode 24 | 25 | 26 | Application 27 | false 28 | v120 29 | true 30 | Unicode 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | true 44 | D:\Winpcap\WpdPack_4_1_2\WpdPack\Include;$(ReferencePath) 45 | D:\Winpcap\WpdPack_4_1_2\WpdPack\Lib;$(LibraryPath) 46 | 47 | 48 | false 49 | 50 | 51 | 52 | Use 53 | Level3 54 | Disabled 55 | WIN32;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) 56 | D:\Winpcap\WpdPack_4_1_2\WpdPack\Include;%(AdditionalIncludeDirectories) 57 | 58 | 59 | Console 60 | true 61 | D:\Winpcap\WpdPack_4_1_2\WpdPack\Lib;%(AdditionalLibraryDirectories) 62 | 63 | 64 | 65 | 66 | Level3 67 | Use 68 | MaxSpeed 69 | true 70 | true 71 | WIN32;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) 72 | 73 | 74 | Console 75 | true 76 | true 77 | true 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | Create 90 | Create 91 | 92 | 93 | 94 | 95 | 96 | 97 | -------------------------------------------------------------------------------- /ARP/发送ARP获取IP与MAC.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hh;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 头文件 23 | 24 | 25 | 头文件 26 | 27 | 28 | 29 | 30 | 源文件 31 | 32 | 33 | 源文件 34 | 35 | 36 | -------------------------------------------------------------------------------- /ARP/发送ARP获取IP与MAC.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Computer-Networks 2 | 大三学习计算机网络与通信期间写的代码,包括: 3 | --------------------------------------- 4 | 1.计算机网络第一次编程作业: SOCKET编程实现简单聊天小程序的客户端与服务器端(实现了单播) 5 | ---------------------------------------------------- 6 | 2.WinPcap: 网络技术与应用第一次编程作业.基于WinPcap自主编写抓包程序获取并分析IP数据包 7 | ---------------------------------------------------------- 8 | 3.ARP: 网络技术与应用课程第二次编程作业。基于WinPcap编写程序发送ARP请求获取本机与目标MAC地址 9 | ------------------------------------------- 10 | 4.Reliable-UDP: 计算机网络大作业最终实现。UDP协议可靠传输的实现,实现了滑动窗口、RENO算法状态迁移的拥塞控制 11 | ------------------------------ 12 | 5.Simple-router: 网路技术与应用课程大作业。基于WinPcap和MFC编写一个路由程序,实现路由表的插入、删除,并进行数据转发 13 | --------------------------------------------- 14 | 如果有学弟学妹来抄作业记得好歹给我Star一下,好好学习,天天向上。 15 | ------------------- 16 | -------------------------------------------------------------------------------- /Reliable-UDP/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/Reliable-UDP/1.jpg -------------------------------------------------------------------------------- /Reliable-UDP/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/Reliable-UDP/2.jpg -------------------------------------------------------------------------------- /Reliable-UDP/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/Reliable-UDP/3.jpg -------------------------------------------------------------------------------- /Reliable-UDP/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/Reliable-UDP/client.cpp -------------------------------------------------------------------------------- /Reliable-UDP/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/Reliable-UDP/server.cpp -------------------------------------------------------------------------------- /SimperRouter/Debug/SimperRouter.Build.CppClean.log: -------------------------------------------------------------------------------- 1 | c:\users\lsy\desktop\network\simperrouter-master\simperrouter-master\simperrouter\debug\simperrouter.pch 2 | c:\users\lsy\desktop\network\simperrouter-master\simperrouter-master\simperrouter\debug\vc120.pdb 3 | c:\users\lsy\desktop\network\simperrouter-master\simperrouter-master\simperrouter\debug\vc120.idb 4 | c:\users\lsy\desktop\network\simperrouter-master\simperrouter-master\simperrouter\debug\stdafx.obj 5 | c:\users\lsy\desktop\network\simperrouter-master\simperrouter-master\simperrouter\debug\simperrouter.tlog\cl.command.1.tlog 6 | c:\users\lsy\desktop\network\simperrouter-master\simperrouter-master\simperrouter\debug\simperrouter.tlog\cl.read.1.tlog 7 | c:\users\lsy\desktop\network\simperrouter-master\simperrouter-master\simperrouter\debug\simperrouter.tlog\cl.write.1.tlog 8 | -------------------------------------------------------------------------------- /SimperRouter/Debug/SimperRouter.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v110:false 2 | Debug|Win32|D:\课程\网络技术与应用\作业\编程作业\第三次作业\SimperRouter\| 3 | -------------------------------------------------------------------------------- /SimperRouter/Debug/SimperRouter.log: -------------------------------------------------------------------------------- 1 | 生成启动时间为 2020/12/21 21:38:49。 2 | 1>项目“C:\Users\LSY\Desktop\Network\SimperRouter-master\SimperRouter-master\SimperRouter\SimperRouter.vcxproj”在节点 2 上(Rebuild 个目标)。 3 | 1>ClCompile: 4 | C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\CL.exe /c /ID:\Winpcap\WpdPack_4_1_2\WpdPack\Include /ZI /nologo /W3 /WX- /sdl /Od /Oy- /D WIN32 /D _WINDOWS /D _DEBUG /D _UNICODE /D UNICODE /D WPCAP /D HAVE_REMOTE /Gm /EHsc /RTC1 /MTd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Yc"stdafx.h" /Fp"Debug\SimperRouter.pch" /Fo"Debug\\" /Fd"Debug\vc120.pdb" /Gd /TP /analyze- /errorReport:prompt stdafx.cpp 5 | stdafx.cpp 6 | C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\CL.exe /c /ID:\Winpcap\WpdPack_4_1_2\WpdPack\Include /ZI /nologo /W3 /WX- /sdl /Od /Oy- /D WIN32 /D _WINDOWS /D _DEBUG /D _UNICODE /D UNICODE /D WPCAP /D HAVE_REMOTE /Gm /EHsc /RTC1 /MTd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Yu"stdafx.h" /Fp"Debug\SimperRouter.pch" /Fo"Debug\\" /Fd"Debug\vc120.pdb" /Gd /TP /analyze- /errorReport:prompt SimperRouter.cpp SimperRouterDlg.cpp 7 | SimperRouterDlg.cpp 8 | 1>c:\users\lsy\desktop\network\simperrouter-master\simperrouter-master\simperrouter\simperrouterdlg.cpp(619): warning C4244: “=”: 从“wchar_t”转换到“char”,可能丢失数据 9 | SimperRouter.cpp 10 | 正在生成代码... 11 | ResourceCompile: 12 | C:\Program Files (x86)\Windows Kits\8.1\bin\x86\rc.exe /D _DEBUG /D _UNICODE /D UNICODE /l"0x0804" /IDebug\ /nologo /fo"Debug\SimperRouter.res" SimperRouter.rc 13 | Link: 14 | C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\link.exe /ERRORREPORT:PROMPT /OUT:"C:\Users\LSY\Desktop\Network\SimperRouter-master\SimperRouter-master\Debug\SimperRouter.exe" /INCREMENTAL /NOLOGO /LIBPATH:D:\Winpcap\WpdPack_4_1_2\WpdPack\Lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /manifestinput:"C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\Include\Manifest\dpiaware.manifest" /DEBUG /PDB:"C:\Users\LSY\Desktop\Network\SimperRouter-master\SimperRouter-master\Debug\SimperRouter.pdb" /SUBSYSTEM:WINDOWS /TLBID:1 /ENTRY:"wWinMainCRTStartup" /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:\Users\LSY\Desktop\Network\SimperRouter-master\SimperRouter-master\Debug\SimperRouter.lib" /MACHINE:X86 Debug\SimperRouter.res 15 | Debug\SimperRouter.obj 16 | Debug\SimperRouterDlg.obj 17 | Debug\stdafx.obj 18 | SimperRouter.vcxproj -> C:\Users\LSY\Desktop\Network\SimperRouter-master\SimperRouter-master\Debug\SimperRouter.exe 19 | 1>已完成生成项目“C:\Users\LSY\Desktop\Network\SimperRouter-master\SimperRouter-master\SimperRouter\SimperRouter.vcxproj”(Rebuild 个目标)的操作。 20 | 21 | 生成成功。 22 | 23 | 已用时间 00:00:09.14 24 | -------------------------------------------------------------------------------- /SimperRouter/Debug/SimperRouter.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Debug/SimperRouter.obj -------------------------------------------------------------------------------- /SimperRouter/Debug/SimperRouter.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Debug/SimperRouter.pch -------------------------------------------------------------------------------- /SimperRouter/Debug/SimperRouter.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Debug/SimperRouter.res -------------------------------------------------------------------------------- /SimperRouter/Debug/SimperRouter.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Debug/SimperRouter.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /SimperRouter/Debug/SimperRouter.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Debug/SimperRouter.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /SimperRouter/Debug/SimperRouter.tlog/SimperRouter.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v120:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit 2 | Debug|Win32|C:\Users\LSY\Desktop\Network\SimperRouter-master\SimperRouter-master\| 3 | -------------------------------------------------------------------------------- /SimperRouter/Debug/SimperRouter.tlog/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Debug/SimperRouter.tlog/cl.command.1.tlog -------------------------------------------------------------------------------- /SimperRouter/Debug/SimperRouter.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Debug/SimperRouter.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /SimperRouter/Debug/SimperRouter.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Debug/SimperRouter.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /SimperRouter/Debug/SimperRouter.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Debug/SimperRouter.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /SimperRouter/Debug/SimperRouter.tlog/rc.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Debug/SimperRouter.tlog/rc.command.1.tlog -------------------------------------------------------------------------------- /SimperRouter/Debug/SimperRouter.tlog/rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Debug/SimperRouter.tlog/rc.read.1.tlog -------------------------------------------------------------------------------- /SimperRouter/Debug/SimperRouter.tlog/rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Debug/SimperRouter.tlog/rc.write.1.tlog -------------------------------------------------------------------------------- /SimperRouter/Debug/SimperRouter.unsuccessfulbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Debug/SimperRouter.unsuccessfulbuild -------------------------------------------------------------------------------- /SimperRouter/Debug/SimperRouterDlg.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Debug/SimperRouterDlg.obj -------------------------------------------------------------------------------- /SimperRouter/Debug/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Debug/stdafx.obj -------------------------------------------------------------------------------- /SimperRouter/Debug/vc120.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Debug/vc120.idb -------------------------------------------------------------------------------- /SimperRouter/Debug/vc120.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Debug/vc120.pdb -------------------------------------------------------------------------------- /SimperRouter/ReadMe.txt: -------------------------------------------------------------------------------- 1 | ================================================================================ 2 | MICROSOFT 基础类库 : SimperRouter 项目概述 3 | =============================================================================== 4 | 5 | 应用程序向导已为您创建了此 SimperRouter 应用程序。此应用程序不仅演示 Microsoft 基础类的基本使用方法,还可作为您编写应用程序的起点。 6 | 7 | 本文件概要介绍组成 SimperRouter 应用程序的每个文件的内容。 8 | 9 | SimperRouter.vcxproj 10 | 这是使用应用程序向导生成的 VC++ 项目的主项目文件,其中包含生成该文件的 Visual C++ 的版本信息,以及有关使用应用程序向导选择的平台、配置和项目功能的信息。 11 | 12 | SimperRouter.vcxproj.filters 13 | 这是使用“应用程序向导”生成的 VC++ 项目筛选器文件。它包含有关项目文件与筛选器之间的关联信息。在 IDE 中,通过这种关联,在特定节点下以分组形式显示具有相似扩展名的文件。例如,“.cpp”文件与“源文件”筛选器关联。 14 | 15 | SimperRouter.h 16 | 这是应用程序的主头文件。 17 | 其中包括其他项目特定的标头(包括 Resource.h),并声明 CRouterApp 应用程序类。 18 | 19 | SimperRouter.cpp 20 | 这是包含应用程序类 CRouterApp 的主应用程序源文件。 21 | 22 | SimperRouter.rc 23 | 这是程序使用的所有 Microsoft Windows 资源的列表。它包括 RES 子目录中存储的图标、位图和光标。此文件可以直接在 Microsoft Visual C++ 中进行编辑。项目资源包含在 2052 中。 24 | 25 | res\SimperRouter.ico 26 | 这是用作应用程序图标的图标文件。此图标包括在主资源文件 SimperRouter.rc 中。 27 | 28 | res\SimperRouter.rc2 29 | 此文件包含不在 Microsoft Visual C++ 中进行编辑的资源。您应该将不可由资源编辑器编辑的所有资源放在此文件中。 30 | 31 | 32 | ///////////////////////////////////////////////////////////////////////////// 33 | 34 | 应用程序向导创建一个对话框类: 35 | 36 | SimperRouterDlg.h、SimperRouterDlg.cpp - 对话框 37 | 这些文件包含 CRouterDlg 类。此类定义应用程序的主对话框的行为。对话框模板包含在 SimperRouter.rc 中,该文件可以在 Microsoft Visual C++ 中编辑。 38 | 39 | ///////////////////////////////////////////////////////////////////////////// 40 | 41 | 其他功能: 42 | 43 | ActiveX 控件 44 | 该应用程序包含对使用 ActiveX 控件的支持。 45 | 46 | Windows 套接字 47 | 应用程序包含对通过 TCP/IP 网络建立通信的支持。 48 | 49 | ///////////////////////////////////////////////////////////////////////////// 50 | 51 | 其他标准文件: 52 | 53 | StdAfx.h, StdAfx.cpp 54 | 这些文件用于生成名为 SimperRouter.pch 的预编译头 (PCH) 文件和名为 StdAfx.obj 的预编译类型文件。 55 | 56 | Resource.h 57 | 这是标准头文件,可用于定义新的资源 ID。Microsoft Visual C++ 将读取并更新此文件。 58 | 59 | SimperRouter.manifest 60 | Windows XP 使用应用程序清单文件来描述特定版本的并行程序集的应用程序依赖项。加载程序使用这些信息来从程序集缓存中加载相应的程序集,并保护其不被应用程序访问。应用程序清单可能会包含在内,以作为与应用程序可执行文件安装在同一文件夹中的外部 .manifest 文件进行重新分发,它还可能以资源的形式包含在可执行文件中。 61 | ///////////////////////////////////////////////////////////////////////////// 62 | 63 | 其他注释: 64 | 65 | 应用程序向导使用“TODO:”来指示应添加或自定义的源代码部分。 66 | 67 | 如果应用程序使用共享 DLL 中的 MFC,您将需要重新分发 MFC DLL。如果应用程序所使用的语言与操作系统的区域设置不同,则还需要重新分发相应的本地化资源 mfc110XXX.DLL。 68 | 有关上述话题的更多信息,请参见 MSDN 文档中有关重新分发 Visual C++ 应用程序的部分。 69 | 70 | ///////////////////////////////////////////////////////////////////////////// 71 | -------------------------------------------------------------------------------- /SimperRouter/Release/SimperRouter.Build.CppClean.log: -------------------------------------------------------------------------------- 1 | c:\users\lsy\desktop\network\simperrouter-master\simperrouter-master\simperrouter\release\simperrouter.pch 2 | c:\users\lsy\desktop\network\simperrouter-master\simperrouter-master\simperrouter\release\vc120.pdb 3 | c:\users\lsy\desktop\network\simperrouter-master\simperrouter-master\simperrouter\release\stdafx.obj 4 | c:\users\lsy\desktop\network\simperrouter-master\simperrouter-master\simperrouter\release\simperrouterdlg.obj 5 | c:\users\lsy\desktop\network\simperrouter-master\simperrouter-master\simperrouter\release\simperrouter.obj 6 | c:\users\lsy\desktop\network\simperrouter-master\simperrouter-master\release\simperrouter.exe 7 | c:\users\lsy\desktop\network\simperrouter-master\simperrouter-master\release\simperrouter.pdb 8 | c:\users\lsy\desktop\network\simperrouter-master\simperrouter-master\simperrouter\release\simperrouter.res 9 | c:\users\lsy\desktop\network\simperrouter-master\simperrouter-master\simperrouter\release\simperrouter.tlog\cl.command.1.tlog 10 | c:\users\lsy\desktop\network\simperrouter-master\simperrouter-master\simperrouter\release\simperrouter.tlog\cl.read.1.tlog 11 | c:\users\lsy\desktop\network\simperrouter-master\simperrouter-master\simperrouter\release\simperrouter.tlog\cl.write.1.tlog 12 | c:\users\lsy\desktop\network\simperrouter-master\simperrouter-master\simperrouter\release\simperrouter.tlog\link.command.1.tlog 13 | c:\users\lsy\desktop\network\simperrouter-master\simperrouter-master\simperrouter\release\simperrouter.tlog\link.read.1.tlog 14 | c:\users\lsy\desktop\network\simperrouter-master\simperrouter-master\simperrouter\release\simperrouter.tlog\link.write.1.tlog 15 | c:\users\lsy\desktop\network\simperrouter-master\simperrouter-master\simperrouter\release\simperrouter.tlog\rc.command.1.tlog 16 | c:\users\lsy\desktop\network\simperrouter-master\simperrouter-master\simperrouter\release\simperrouter.tlog\rc.read.1.tlog 17 | c:\users\lsy\desktop\network\simperrouter-master\simperrouter-master\simperrouter\release\simperrouter.tlog\rc.write.1.tlog 18 | -------------------------------------------------------------------------------- /SimperRouter/Release/SimperRouter.log: -------------------------------------------------------------------------------- 1 | 生成启动时间为 2020/12/21 21:43:47。 2 | 1>项目“C:\Users\LSY\Desktop\Network\SimperRouter-master\SimperRouter-master\SimperRouter\SimperRouter.vcxproj”在节点 2 上(Rebuild 个目标)。 3 | 1>ClCompile: 4 | C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\CL.exe /c /ID:\Winpcap\WpdPack_4_1_2\WpdPack\Include /Zi /nologo /W3 /WX- /sdl /O2 /Oi /Oy- /GL /D WIN32 /D _WINDOWS /D NDEBUG /D _UNICODE /D UNICODE /Gm- /EHsc /MT /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Yc"stdafx.h" /Fp"Release\SimperRouter.pch" /Fo"Release\\" /Fd"Release\vc120.pdb" /Gd /TP /analyze- /errorReport:prompt stdafx.cpp 5 | stdafx.cpp 6 | C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\CL.exe /c /ID:\Winpcap\WpdPack_4_1_2\WpdPack\Include /Zi /nologo /W3 /WX- /sdl /O2 /Oi /Oy- /GL /D WIN32 /D _WINDOWS /D NDEBUG /D _UNICODE /D UNICODE /Gm- /EHsc /MT /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Yu"stdafx.h" /Fp"Release\SimperRouter.pch" /Fo"Release\\" /Fd"Release\vc120.pdb" /Gd /TP /analyze- /errorReport:prompt SimperRouter.cpp SimperRouterDlg.cpp 7 | SimperRouter.cpp 8 | SimperRouterDlg.cpp 9 | 1>SimperRouterDlg.cpp(619): warning C4244: “=”: 从“wchar_t”转换到“char”,可能丢失数据 10 | ResourceCompile: 11 | C:\Program Files (x86)\Windows Kits\8.1\bin\x86\rc.exe /D NDEBUG /D _UNICODE /D UNICODE /l"0x0804" /IRelease\ /nologo /fo"Release\SimperRouter.res" SimperRouter.rc 12 | Link: 13 | C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\link.exe /ERRORREPORT:PROMPT /OUT:"C:\Users\LSY\Desktop\Network\SimperRouter-master\SimperRouter-master\Release\SimperRouter.exe" /INCREMENTAL:NO /NOLOGO /LIBPATH:D:\Winpcap\WpdPack_4_1_2\WpdPack\Lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /manifestinput:"C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\Include\Manifest\dpiaware.manifest" /DEBUG /PDB:"C:\Users\LSY\Desktop\Network\SimperRouter-master\SimperRouter-master\Release\SimperRouter.pdb" /SUBSYSTEM:WINDOWS /OPT:REF /OPT:ICF /LTCG /TLBID:1 /ENTRY:"wWinMainCRTStartup" /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:\Users\LSY\Desktop\Network\SimperRouter-master\SimperRouter-master\Release\SimperRouter.lib" /MACHINE:X86 /SAFESEH Release\SimperRouter.res 14 | Release\SimperRouter.obj 15 | Release\SimperRouterDlg.obj 16 | Release\stdafx.obj 17 | 正在生成代码 18 | 已完成代码的生成 19 | SimperRouter.vcxproj -> C:\Users\LSY\Desktop\Network\SimperRouter-master\SimperRouter-master\Release\SimperRouter.exe 20 | 1>已完成生成项目“C:\Users\LSY\Desktop\Network\SimperRouter-master\SimperRouter-master\SimperRouter\SimperRouter.vcxproj”(Rebuild 个目标)的操作。 21 | 22 | 生成成功。 23 | 24 | 已用时间 00:00:06.23 25 | -------------------------------------------------------------------------------- /SimperRouter/Release/SimperRouter.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Release/SimperRouter.obj -------------------------------------------------------------------------------- /SimperRouter/Release/SimperRouter.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Release/SimperRouter.pch -------------------------------------------------------------------------------- /SimperRouter/Release/SimperRouter.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Release/SimperRouter.res -------------------------------------------------------------------------------- /SimperRouter/Release/SimperRouter.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Release/SimperRouter.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /SimperRouter/Release/SimperRouter.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Release/SimperRouter.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /SimperRouter/Release/SimperRouter.tlog/SimperRouter.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v120:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit 2 | Release|Win32|C:\Users\LSY\Desktop\Network\SimperRouter-master\SimperRouter-master\| 3 | -------------------------------------------------------------------------------- /SimperRouter/Release/SimperRouter.tlog/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Release/SimperRouter.tlog/cl.command.1.tlog -------------------------------------------------------------------------------- /SimperRouter/Release/SimperRouter.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Release/SimperRouter.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /SimperRouter/Release/SimperRouter.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Release/SimperRouter.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /SimperRouter/Release/SimperRouter.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Release/SimperRouter.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /SimperRouter/Release/SimperRouter.tlog/rc.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Release/SimperRouter.tlog/rc.command.1.tlog -------------------------------------------------------------------------------- /SimperRouter/Release/SimperRouter.tlog/rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Release/SimperRouter.tlog/rc.read.1.tlog -------------------------------------------------------------------------------- /SimperRouter/Release/SimperRouter.tlog/rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Release/SimperRouter.tlog/rc.write.1.tlog -------------------------------------------------------------------------------- /SimperRouter/Release/SimperRouterDlg.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Release/SimperRouterDlg.obj -------------------------------------------------------------------------------- /SimperRouter/Release/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Release/stdafx.obj -------------------------------------------------------------------------------- /SimperRouter/Release/vc120.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/Release/vc120.pdb -------------------------------------------------------------------------------- /SimperRouter/SimperRouter.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/SimperRouter.aps -------------------------------------------------------------------------------- /SimperRouter/SimperRouter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/SimperRouter.cpp -------------------------------------------------------------------------------- /SimperRouter/SimperRouter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/SimperRouter.h -------------------------------------------------------------------------------- /SimperRouter/SimperRouter.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/SimperRouter.rc -------------------------------------------------------------------------------- /SimperRouter/SimperRouter.vcxproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | Win32 7 | 8 | 9 | Release 10 | Win32 11 | 12 | 13 | 14 | {F7DF705A-F936-4E0F-B6B8-DD6823979E72} 15 | SimperRouter 16 | MFCProj 17 | 18 | 19 | 20 | Application 21 | true 22 | v120 23 | Unicode 24 | Static 25 | 26 | 27 | Application 28 | false 29 | v120 30 | true 31 | Unicode 32 | Static 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | true 46 | 47 | 48 | false 49 | 50 | 51 | 52 | Use 53 | Level3 54 | Disabled 55 | WIN32;_WINDOWS;_DEBUG;%(PreprocessorDefinitions);WPCAP;HAVE_REMOTE 56 | true 57 | D:\Winpcap\WpdPack_4_1_2\WpdPack\Include;%(AdditionalIncludeDirectories) 58 | 59 | 60 | Windows 61 | true 62 | D:\Winpcap\WpdPack_4_1_2\WpdPack\Lib;%(AdditionalIncludeDirectories) 63 | 64 | 65 | false 66 | true 67 | _DEBUG;%(PreprocessorDefinitions) 68 | 69 | 70 | 0x0804 71 | _DEBUG;%(PreprocessorDefinitions) 72 | $(IntDir);%(AdditionalIncludeDirectories) 73 | 74 | 75 | 76 | 77 | Level3 78 | Use 79 | MaxSpeed 80 | true 81 | true 82 | WIN32;_WINDOWS;NDEBUG;%(PreprocessorDefinitions) 83 | true 84 | D:\Winpcap\WpdPack_4_1_2\WpdPack\Include;%(AdditionalIncludeDirectories) 85 | 86 | 87 | Windows 88 | true 89 | true 90 | true 91 | D:\Winpcap\WpdPack_4_1_2\WpdPack\Lib;%(AdditionalLibraryDirectories) 92 | 93 | 94 | false 95 | true 96 | NDEBUG;%(PreprocessorDefinitions) 97 | 98 | 99 | 0x0804 100 | NDEBUG;%(PreprocessorDefinitions) 101 | $(IntDir);%(AdditionalIncludeDirectories) 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | Create 119 | Create 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | -------------------------------------------------------------------------------- /SimperRouter/SimperRouter.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 头文件 23 | 24 | 25 | 头文件 26 | 27 | 28 | 头文件 29 | 30 | 31 | 头文件 32 | 33 | 34 | 头文件 35 | 36 | 37 | 38 | 39 | 源文件 40 | 41 | 42 | 源文件 43 | 44 | 45 | 源文件 46 | 47 | 48 | 49 | 50 | 资源文件 51 | 52 | 53 | 54 | 55 | 资源文件 56 | 57 | 58 | 59 | 60 | 资源文件 61 | 62 | 63 | -------------------------------------------------------------------------------- /SimperRouter/SimperRouterDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/SimperRouterDlg.cpp -------------------------------------------------------------------------------- /SimperRouter/SimperRouterDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/SimperRouterDlg.h -------------------------------------------------------------------------------- /SimperRouter/res/SimperRouter.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/res/SimperRouter.ico -------------------------------------------------------------------------------- /SimperRouter/res/SimperRouter.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/res/SimperRouter.rc2 -------------------------------------------------------------------------------- /SimperRouter/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/resource.h -------------------------------------------------------------------------------- /SimperRouter/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/stdafx.cpp -------------------------------------------------------------------------------- /SimperRouter/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/stdafx.h -------------------------------------------------------------------------------- /SimperRouter/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/SimperRouter/targetver.h -------------------------------------------------------------------------------- /WinPcap/数据包获取/Debug/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/WinPcap/数据包获取/Debug/stdafx.obj -------------------------------------------------------------------------------- /WinPcap/数据包获取/Debug/vc120.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/WinPcap/数据包获取/Debug/vc120.idb -------------------------------------------------------------------------------- /WinPcap/数据包获取/Debug/vc120.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/WinPcap/数据包获取/Debug/vc120.pdb -------------------------------------------------------------------------------- /WinPcap/数据包获取/Debug/数据包获取.Build.CppClean.log: -------------------------------------------------------------------------------- 1 | c:\users\lsy\documents\visual studio 2013\projects\数据包获取\数据包获取\debug\数据包获取.pch 2 | c:\users\lsy\documents\visual studio 2013\projects\数据包获取\数据包获取\debug\vc120.pdb 3 | c:\users\lsy\documents\visual studio 2013\projects\数据包获取\数据包获取\debug\vc120.idb 4 | c:\users\lsy\documents\visual studio 2013\projects\数据包获取\数据包获取\debug\stdafx.obj 5 | c:\users\lsy\documents\visual studio 2013\projects\数据包获取\数据包获取\debug\数据包获取.obj 6 | c:\users\lsy\documents\visual studio 2013\projects\数据包获取\debug\数据包获取.ilk 7 | c:\users\lsy\documents\visual studio 2013\projects\数据包获取\debug\数据包获取.exe 8 | c:\users\lsy\documents\visual studio 2013\projects\数据包获取\debug\数据包获取.pdb 9 | c:\users\lsy\documents\visual studio 2013\projects\数据包获取\数据包获取\debug\数据包获取.tlog\cl.command.1.tlog 10 | c:\users\lsy\documents\visual studio 2013\projects\数据包获取\数据包获取\debug\数据包获取.tlog\cl.read.1.tlog 11 | c:\users\lsy\documents\visual studio 2013\projects\数据包获取\数据包获取\debug\数据包获取.tlog\cl.write.1.tlog 12 | c:\users\lsy\documents\visual studio 2013\projects\数据包获取\数据包获取\debug\数据包获取.tlog\link.command.1.tlog 13 | c:\users\lsy\documents\visual studio 2013\projects\数据包获取\数据包获取\debug\数据包获取.tlog\link.read.1.tlog 14 | c:\users\lsy\documents\visual studio 2013\projects\数据包获取\数据包获取\debug\数据包获取.tlog\link.write.1.tlog 15 | -------------------------------------------------------------------------------- /WinPcap/数据包获取/Debug/数据包获取.log: -------------------------------------------------------------------------------- 1 | 生成启动时间为 2020/10/31 15:43:30。 2 | 1>项目“C:\Users\LSY\documents\visual studio 2013\Projects\数据包获取\数据包获取\数据包获取.vcxproj”在节点 2 上(Build 个目标)。 3 | 1>ClCompile: 4 | C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\CL.exe /c /ID:\Winpcap\WpdPack_4_1_2\WpdPack\Lib /ZI /nologo /W3 /WX- /Od /Oy- /D WIN32 /D _DEBUG /D _CONSOLE /D _LIB /D _UNICODE /D UNICODE /Gm /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Yu"stdafx.h" /Fp"Debug\数据包获取.pch" /Fo"Debug\\" /Fd"Debug\vc120.pdb" /Gd /TP /analyze- /errorReport:prompt "数据包获取.cpp" 5 | 数据包获取.cpp 6 | 1>c:\users\lsy\documents\visual studio 2013\projects\数据包获取\数据包获取\数据包获取.cpp(45): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. 7 | c:\program files (x86)\microsoft visual studio 12.0\vc\include\string.h(195) : 参见“strncpy”的声明 8 | 1>c:\users\lsy\documents\visual studio 2013\projects\数据包获取\数据包获取\数据包获取.cpp(46): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. 9 | c:\program files (x86)\microsoft visual studio 12.0\vc\include\string.h(195) : 参见“strncpy”的声明 10 | 1>c:\users\lsy\documents\visual studio 2013\projects\数据包获取\数据包获取\数据包获取.cpp(198): warning C4996: 'localtime': This function or variable may be unsafe. Consider using localtime_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. 11 | c:\program files (x86)\microsoft visual studio 12.0\vc\include\time.inl(112) : 参见“localtime”的声明 12 | 1>c:\users\lsy\documents\visual studio 2013\projects\数据包获取\数据包获取\数据包获取.cpp(208): warning C4018: “<”: 有符号/无符号不匹配 13 | 1>c:\users\lsy\documents\visual studio 2013\projects\数据包获取\数据包获取\数据包获取.cpp(180): warning C4101: “DestinationIP”: 未引用的局部变量 14 | 1>c:\users\lsy\documents\visual studio 2013\projects\数据包获取\数据包获取\数据包获取.cpp(143): warning C4101: “a”: 未引用的局部变量 15 | 1>c:\users\lsy\documents\visual studio 2013\projects\数据包获取\数据包获取\数据包获取.cpp(180): warning C4101: “SourceIP”: 未引用的局部变量 16 | 1>c:\users\lsy\documents\visual studio 2013\projects\数据包获取\数据包获取\数据包获取.cpp(179): warning C4101: “IPPacket”: 未引用的局部变量 17 | Link: 18 | C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\link.exe /ERRORREPORT:PROMPT /OUT:"C:\Users\LSY\documents\visual studio 2013\Projects\数据包获取\Debug\数据包获取.exe" /INCREMENTAL /NOLOGO /LIBPATH:D:\Winpcap\WpdPack_4_1_2\WpdPack\Lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"C:\Users\LSY\documents\visual studio 2013\Projects\数据包获取\Debug\数据包获取.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:\Users\LSY\documents\visual studio 2013\Projects\数据包获取\Debug\数据包获取.lib" /MACHINE:X86 Debug\stdafx.obj 19 | "Debug\数据包获取.obj" 20 | 数据包获取.vcxproj -> C:\Users\LSY\documents\visual studio 2013\Projects\数据包获取\Debug\数据包获取.exe 21 | 1>已完成生成项目“C:\Users\LSY\documents\visual studio 2013\Projects\数据包获取\数据包获取\数据包获取.vcxproj”(Build 个目标)的操作。 22 | 23 | 生成成功。 24 | 25 | 已用时间 00:00:00.82 26 | -------------------------------------------------------------------------------- /WinPcap/数据包获取/Debug/数据包获取.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/WinPcap/数据包获取/Debug/数据包获取.obj -------------------------------------------------------------------------------- /WinPcap/数据包获取/Debug/数据包获取.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/WinPcap/数据包获取/Debug/数据包获取.pch -------------------------------------------------------------------------------- /WinPcap/数据包获取/Debug/数据包获取.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/WinPcap/数据包获取/Debug/数据包获取.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /WinPcap/数据包获取/Debug/数据包获取.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/WinPcap/数据包获取/Debug/数据包获取.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /WinPcap/数据包获取/Debug/数据包获取.tlog/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/WinPcap/数据包获取/Debug/数据包获取.tlog/cl.command.1.tlog -------------------------------------------------------------------------------- /WinPcap/数据包获取/Debug/数据包获取.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/WinPcap/数据包获取/Debug/数据包获取.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /WinPcap/数据包获取/Debug/数据包获取.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/WinPcap/数据包获取/Debug/数据包获取.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /WinPcap/数据包获取/Debug/数据包获取.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/WinPcap/数据包获取/Debug/数据包获取.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /WinPcap/数据包获取/Debug/数据包获取.tlog/数据包获取.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v120:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit 2 | Debug|Win32|C:\Users\LSY\documents\visual studio 2013\Projects\数据包获取\| 3 | -------------------------------------------------------------------------------- /WinPcap/数据包获取/ReadMe.txt: -------------------------------------------------------------------------------- 1 | ======================================================================== 2 | 控制台应用程序:数据包获取 项目概述 3 | ======================================================================== 4 | 5 | 应用程序向导已为您创建了此 数据包获取 应用程序。 6 | 7 | 本文件概要介绍组成 数据包获取 应用程序的每个文件的内容。 8 | 9 | 10 | 数据包获取.vcxproj 11 | 这是使用应用程序向导生成的 VC++ 项目的主项目文件,其中包含生成该文件的 Visual C++ 的版本信息,以及有关使用应用程序向导选择的平台、配置和项目功能的信息。 12 | 13 | 数据包获取.vcxproj.filters 14 | 这是使用“应用程序向导”生成的 VC++ 项目筛选器文件。它包含有关项目文件与筛选器之间的关联信息。在 IDE 中,通过这种关联,在特定节点下以分组形式显示具有相似扩展名的文件。例如,“.cpp”文件与“源文件”筛选器关联。 15 | 16 | 数据包获取.cpp 17 | 这是主应用程序源文件。 18 | 19 | ///////////////////////////////////////////////////////////////////////////// 20 | 其他标准文件: 21 | 22 | StdAfx.h, StdAfx.cpp 23 | 这些文件用于生成名为 数据包获取.pch 的预编译头 (PCH) 文件和名为 StdAfx.obj 的预编译类型文件。 24 | 25 | ///////////////////////////////////////////////////////////////////////////// 26 | 其他注释: 27 | 28 | 应用程序向导使用“TODO:”注释来指示应添加或自定义的源代码部分。 29 | 30 | ///////////////////////////////////////////////////////////////////////////// 31 | -------------------------------------------------------------------------------- /WinPcap/数据包获取/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/WinPcap/数据包获取/stdafx.cpp -------------------------------------------------------------------------------- /WinPcap/数据包获取/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/WinPcap/数据包获取/stdafx.h -------------------------------------------------------------------------------- /WinPcap/数据包获取/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/WinPcap/数据包获取/targetver.h -------------------------------------------------------------------------------- /WinPcap/数据包获取/数据包获取.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/WinPcap/数据包获取/数据包获取.cpp -------------------------------------------------------------------------------- /WinPcap/数据包获取/数据包获取.vcxproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | Win32 7 | 8 | 9 | Release 10 | Win32 11 | 12 | 13 | 14 | {0E4A5F91-322A-4663-B8B9-94C1F547CA05} 15 | Win32Proj 16 | 数据包获取 17 | 18 | 19 | 20 | Application 21 | true 22 | v120 23 | Unicode 24 | 25 | 26 | Application 27 | false 28 | v120 29 | true 30 | Unicode 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | true 44 | D:\Winpcap\WpdPack_4_1_2\WpdPack\Include;$(IncludePath) 45 | 46 | 47 | false 48 | 49 | 50 | 51 | Use 52 | Level3 53 | Disabled 54 | WIN32;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) 55 | D:\Winpcap\WpdPack_4_1_2\WpdPack\Lib;%(AdditionalIncludeDirectories) 56 | 57 | 58 | Console 59 | true 60 | D:\Winpcap\WpdPack_4_1_2\WpdPack\Lib;%(AdditionalLibraryDirectories) 61 | 62 | 63 | 64 | 65 | Level3 66 | Use 67 | MaxSpeed 68 | true 69 | true 70 | WIN32;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) 71 | 72 | 73 | Console 74 | true 75 | true 76 | true 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | Create 89 | Create 90 | 91 | 92 | 93 | 94 | 95 | 96 | -------------------------------------------------------------------------------- /WinPcap/数据包获取/数据包获取.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hh;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 头文件 23 | 24 | 25 | 头文件 26 | 27 | 28 | 29 | 30 | 源文件 31 | 32 | 33 | 源文件 34 | 35 | 36 | -------------------------------------------------------------------------------- /WinPcap/数据包获取/数据包获取.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /聊天小程序(单播)/Client/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Client/Client.cpp -------------------------------------------------------------------------------- /聊天小程序(单播)/Client/Client.vcxproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | Win32 7 | 8 | 9 | Release 10 | Win32 11 | 12 | 13 | 14 | {9FC88D13-ED16-4CB1-9C88-75976066A826} 15 | Win32Proj 16 | Client 17 | 18 | 19 | 20 | Application 21 | true 22 | v120 23 | Unicode 24 | 25 | 26 | Application 27 | false 28 | v120 29 | true 30 | Unicode 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | true 44 | 45 | 46 | false 47 | 48 | 49 | 50 | Use 51 | Level3 52 | Disabled 53 | WIN32;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) 54 | 55 | 56 | Console 57 | true 58 | 59 | 60 | 61 | 62 | Level3 63 | Use 64 | MaxSpeed 65 | true 66 | true 67 | WIN32;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) 68 | 69 | 70 | Console 71 | true 72 | true 73 | true 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | Create 87 | Create 88 | 89 | 90 | 91 | 92 | 93 | -------------------------------------------------------------------------------- /聊天小程序(单播)/Client/Client.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hh;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 头文件 23 | 24 | 25 | 头文件 26 | 27 | 28 | 29 | 30 | 源文件 31 | 32 | 33 | 源文件 34 | 35 | 36 | -------------------------------------------------------------------------------- /聊天小程序(单播)/Client/Debug/Client.log: -------------------------------------------------------------------------------- 1 | 生成启动时间为 2020/10/29 23:31:33。 2 | 1>项目“C:\Users\LSY\Documents\Visual Studio 2013\Projects\Client\Client\Client.vcxproj”在节点 2 上(Build 个目标)。 3 | 1>ClCompile: 4 | C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\CL.exe /c /ZI /nologo /W3 /WX- /Od /Oy- /D WIN32 /D _DEBUG /D _CONSOLE /D _LIB /D _UNICODE /D UNICODE /Gm /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Yu"stdafx.h" /Fp"Debug\Client.pch" /Fo"Debug\\" /Fd"Debug\vc120.pdb" /Gd /TP /analyze- /errorReport:prompt Client.cpp 5 | Client.cpp 6 | 1>c:\users\lsy\documents\visual studio 2013\projects\client\client\client.cpp(43): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. 7 | c:\program files (x86)\microsoft visual studio 12.0\vc\include\string.h(112) : 参见“strcpy”的声明 8 | Link: 9 | C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\link.exe /ERRORREPORT:PROMPT /OUT:"C:\Users\LSY\Documents\Visual Studio 2013\Projects\Client\Debug\Client.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"C:\Users\LSY\Documents\Visual Studio 2013\Projects\Client\Debug\Client.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:\Users\LSY\Documents\Visual Studio 2013\Projects\Client\Debug\Client.lib" /MACHINE:X86 Debug\Client.obj 10 | Debug\stdafx.obj 11 | Client.vcxproj -> C:\Users\LSY\Documents\Visual Studio 2013\Projects\Client\Debug\Client.exe 12 | 1>已完成生成项目“C:\Users\LSY\Documents\Visual Studio 2013\Projects\Client\Client\Client.vcxproj”(Build 个目标)的操作。 13 | 14 | 生成成功。 15 | 16 | 已用时间 00:00:01.31 17 | -------------------------------------------------------------------------------- /聊天小程序(单播)/Client/Debug/Client.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Client/Debug/Client.obj -------------------------------------------------------------------------------- /聊天小程序(单播)/Client/Debug/Client.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Client/Debug/Client.pch -------------------------------------------------------------------------------- /聊天小程序(单播)/Client/Debug/Client.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Client/Debug/Client.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /聊天小程序(单播)/Client/Debug/Client.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Client/Debug/Client.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /聊天小程序(单播)/Client/Debug/Client.tlog/Client.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v120:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit 2 | Debug|Win32|C:\Users\LSY\Documents\Visual Studio 2013\Projects\Client\| 3 | -------------------------------------------------------------------------------- /聊天小程序(单播)/Client/Debug/Client.tlog/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Client/Debug/Client.tlog/cl.command.1.tlog -------------------------------------------------------------------------------- /聊天小程序(单播)/Client/Debug/Client.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Client/Debug/Client.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /聊天小程序(单播)/Client/Debug/Client.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Client/Debug/Client.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /聊天小程序(单播)/Client/Debug/Client.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Client/Debug/Client.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /聊天小程序(单播)/Client/Debug/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Client/Debug/stdafx.obj -------------------------------------------------------------------------------- /聊天小程序(单播)/Client/Debug/vc120.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Client/Debug/vc120.idb -------------------------------------------------------------------------------- /聊天小程序(单播)/Client/Debug/vc120.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Client/Debug/vc120.pdb -------------------------------------------------------------------------------- /聊天小程序(单播)/Client/ReadMe.txt: -------------------------------------------------------------------------------- 1 | ======================================================================== 2 | 控制台应用程序:Client 项目概述 3 | ======================================================================== 4 | 5 | 应用程序向导已为您创建了此 Client 应用程序。 6 | 7 | 本文件概要介绍组成 Client 应用程序的每个文件的内容。 8 | 9 | 10 | Client.vcxproj 11 | 这是使用应用程序向导生成的 VC++ 项目的主项目文件,其中包含生成该文件的 Visual C++ 的版本信息,以及有关使用应用程序向导选择的平台、配置和项目功能的信息。 12 | 13 | Client.vcxproj.filters 14 | 这是使用“应用程序向导”生成的 VC++ 项目筛选器文件。它包含有关项目文件与筛选器之间的关联信息。在 IDE 中,通过这种关联,在特定节点下以分组形式显示具有相似扩展名的文件。例如,“.cpp”文件与“源文件”筛选器关联。 15 | 16 | Client.cpp 17 | 这是主应用程序源文件。 18 | 19 | ///////////////////////////////////////////////////////////////////////////// 20 | 其他标准文件: 21 | 22 | StdAfx.h, StdAfx.cpp 23 | 这些文件用于生成名为 Client.pch 的预编译头 (PCH) 文件和名为 StdAfx.obj 的预编译类型文件。 24 | 25 | ///////////////////////////////////////////////////////////////////////////// 26 | 其他注释: 27 | 28 | 应用程序向导使用“TODO:”注释来指示应添加或自定义的源代码部分。 29 | 30 | ///////////////////////////////////////////////////////////////////////////// 31 | -------------------------------------------------------------------------------- /聊天小程序(单播)/Client/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Client/stdafx.cpp -------------------------------------------------------------------------------- /聊天小程序(单播)/Client/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Client/stdafx.h -------------------------------------------------------------------------------- /聊天小程序(单播)/Client/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Client/targetver.h -------------------------------------------------------------------------------- /聊天小程序(单播)/Server/Debug/Server.Build.CppClean.log: -------------------------------------------------------------------------------- 1 | c:\users\lsy\documents\visual studio 2013\projects\聊天室\聊天室\debug\server.pch 2 | c:\users\lsy\documents\visual studio 2013\projects\聊天室\聊天室\debug\vc120.pdb 3 | c:\users\lsy\documents\visual studio 2013\projects\聊天室\聊天室\debug\vc120.idb 4 | c:\users\lsy\documents\visual studio 2013\projects\聊天室\聊天室\debug\stdafx.obj 5 | c:\users\lsy\documents\visual studio 2013\projects\聊天室\聊天室\debug\server.obj 6 | c:\users\lsy\documents\visual studio 2013\projects\聊天室\debug\server.ilk 7 | c:\users\lsy\documents\visual studio 2013\projects\聊天室\debug\server.exe 8 | c:\users\lsy\documents\visual studio 2013\projects\聊天室\debug\server.pdb 9 | c:\users\lsy\documents\visual studio 2013\projects\聊天室\聊天室\debug\server.tlog\cl.command.1.tlog 10 | c:\users\lsy\documents\visual studio 2013\projects\聊天室\聊天室\debug\server.tlog\cl.read.1.tlog 11 | c:\users\lsy\documents\visual studio 2013\projects\聊天室\聊天室\debug\server.tlog\cl.write.1.tlog 12 | c:\users\lsy\documents\visual studio 2013\projects\聊天室\聊天室\debug\server.tlog\link.command.1.tlog 13 | c:\users\lsy\documents\visual studio 2013\projects\聊天室\聊天室\debug\server.tlog\link.read.1.tlog 14 | c:\users\lsy\documents\visual studio 2013\projects\聊天室\聊天室\debug\server.tlog\link.write.1.tlog 15 | -------------------------------------------------------------------------------- /聊天小程序(单播)/Server/Debug/Server.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Server/Debug/Server.obj -------------------------------------------------------------------------------- /聊天小程序(单播)/Server/Debug/Server.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Server/Debug/Server.pch -------------------------------------------------------------------------------- /聊天小程序(单播)/Server/Debug/Server.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Server/Debug/Server.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /聊天小程序(单播)/Server/Debug/Server.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Server/Debug/Server.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /聊天小程序(单播)/Server/Debug/Server.tlog/Server.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v120:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit 2 | Debug|Win32|C:\Users\LSY\documents\visual studio 2013\Projects\聊天室\| 3 | -------------------------------------------------------------------------------- /聊天小程序(单播)/Server/Debug/Server.tlog/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Server/Debug/Server.tlog/cl.command.1.tlog -------------------------------------------------------------------------------- /聊天小程序(单播)/Server/Debug/Server.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Server/Debug/Server.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /聊天小程序(单播)/Server/Debug/Server.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Server/Debug/Server.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /聊天小程序(单播)/Server/Debug/Server.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Server/Debug/Server.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /聊天小程序(单播)/Server/Debug/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Server/Debug/stdafx.obj -------------------------------------------------------------------------------- /聊天小程序(单播)/Server/Debug/vc120.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Server/Debug/vc120.idb -------------------------------------------------------------------------------- /聊天小程序(单播)/Server/Debug/vc120.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Server/Debug/vc120.pdb -------------------------------------------------------------------------------- /聊天小程序(单播)/Server/Debug/聊天室.Build.CppClean.log: -------------------------------------------------------------------------------- 1 | c:\users\lsy\documents\visual studio 2013\projects\聊天室\聊天室\debug\聊天室.pch 2 | c:\users\lsy\documents\visual studio 2013\projects\聊天室\聊天室\debug\vc120.pdb 3 | c:\users\lsy\documents\visual studio 2013\projects\聊天室\聊天室\debug\vc120.idb 4 | c:\users\lsy\documents\visual studio 2013\projects\聊天室\聊天室\debug\stdafx.obj 5 | c:\users\lsy\documents\visual studio 2013\projects\聊天室\聊天室\debug\聊天室.tlog\cl.command.1.tlog 6 | c:\users\lsy\documents\visual studio 2013\projects\聊天室\聊天室\debug\聊天室.tlog\cl.read.1.tlog 7 | c:\users\lsy\documents\visual studio 2013\projects\聊天室\聊天室\debug\聊天室.tlog\cl.write.1.tlog 8 | -------------------------------------------------------------------------------- /聊天小程序(单播)/Server/Debug/聊天室.log: -------------------------------------------------------------------------------- 1 | 生成启动时间为 2020/10/28 11:01:39。 2 | 1>项目“C:\Users\LSY\documents\visual studio 2013\Projects\聊天室\聊天室\聊天室.vcxproj”在节点 2 上(Build 个目标)。 3 | 1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppBuild.targets(381,5): warning MSB8028: The intermediate directory (Debug\) contains files shared from another project (聊天室.vcxproj). This can lead to incorrect clean and rebuild behavior. 4 | 1>ClCompile: 5 | C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\CL.exe /c /ZI /nologo /W3 /WX- /Od /Oy- /D WIN32 /D _DEBUG /D _CONSOLE /D _LIB /D _UNICODE /D UNICODE /Gm /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Yu"stdafx.h" /Fp"Debug\Server.pch" /Fo"Debug\\" /Fd"Debug\vc120.pdb" /Gd /TP /analyze- /errorReport:prompt Server.cpp 6 | Server.cpp 7 | Link: 8 | C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\link.exe /ERRORREPORT:PROMPT /OUT:"C:\Users\LSY\documents\visual studio 2013\Projects\聊天室\Debug\Server.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"C:\Users\LSY\documents\visual studio 2013\Projects\聊天室\Debug\Server.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:\Users\LSY\documents\visual studio 2013\Projects\聊天室\Debug\Server.lib" /MACHINE:X86 Debug\stdafx.obj 9 | Debug\Server.obj 10 | 聊天室.vcxproj -> C:\Users\LSY\documents\visual studio 2013\Projects\聊天室\Debug\Server.exe 11 | 1>已完成生成项目“C:\Users\LSY\documents\visual studio 2013\Projects\聊天室\聊天室\聊天室.vcxproj”(Build 个目标)的操作。 12 | 13 | 生成成功。 14 | 15 | 已用时间 00:00:01.94 16 | -------------------------------------------------------------------------------- /聊天小程序(单播)/Server/Debug/聊天室.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Server/Debug/聊天室.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /聊天小程序(单播)/Server/Debug/聊天室.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Server/Debug/聊天室.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /聊天小程序(单播)/Server/Debug/聊天室.tlog/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Server/Debug/聊天室.tlog/cl.command.1.tlog -------------------------------------------------------------------------------- /聊天小程序(单播)/Server/Debug/聊天室.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Server/Debug/聊天室.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /聊天小程序(单播)/Server/Debug/聊天室.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Server/Debug/聊天室.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /聊天小程序(单播)/Server/Debug/聊天室.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Server/Debug/聊天室.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /聊天小程序(单播)/Server/Debug/聊天室.tlog/聊天室.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v120:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit 2 | Debug|Win32|C:\Users\LSY\documents\visual studio 2013\Projects\聊天室\| 3 | -------------------------------------------------------------------------------- /聊天小程序(单播)/Server/ReadMe.txt: -------------------------------------------------------------------------------- 1 | ======================================================================== 2 | 控制台应用程序:聊天室 项目概述 3 | ======================================================================== 4 | 5 | 应用程序向导已为您创建了此 聊天室 应用程序。 6 | 7 | 本文件概要介绍组成 聊天室 应用程序的每个文件的内容。 8 | 9 | 10 | 聊天室.vcxproj 11 | 这是使用应用程序向导生成的 VC++ 项目的主项目文件,其中包含生成该文件的 Visual C++ 的版本信息,以及有关使用应用程序向导选择的平台、配置和项目功能的信息。 12 | 13 | 聊天室.vcxproj.filters 14 | 这是使用“应用程序向导”生成的 VC++ 项目筛选器文件。它包含有关项目文件与筛选器之间的关联信息。在 IDE 中,通过这种关联,在特定节点下以分组形式显示具有相似扩展名的文件。例如,“.cpp”文件与“源文件”筛选器关联。 15 | 16 | 聊天室.cpp 17 | 这是主应用程序源文件。 18 | 19 | ///////////////////////////////////////////////////////////////////////////// 20 | 其他标准文件: 21 | 22 | StdAfx.h, StdAfx.cpp 23 | 这些文件用于生成名为 聊天室.pch 的预编译头 (PCH) 文件和名为 StdAfx.obj 的预编译类型文件。 24 | 25 | ///////////////////////////////////////////////////////////////////////////// 26 | 其他注释: 27 | 28 | 应用程序向导使用“TODO:”注释来指示应添加或自定义的源代码部分。 29 | 30 | ///////////////////////////////////////////////////////////////////////////// 31 | -------------------------------------------------------------------------------- /聊天小程序(单播)/Server/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Server/Server.cpp -------------------------------------------------------------------------------- /聊天小程序(单播)/Server/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Server/stdafx.cpp -------------------------------------------------------------------------------- /聊天小程序(单播)/Server/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Server/stdafx.h -------------------------------------------------------------------------------- /聊天小程序(单播)/Server/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NKU-Yang/Computer-Networks/c5818e3de4574542040c7ba6f25036873bd08e55/聊天小程序(单播)/Server/targetver.h -------------------------------------------------------------------------------- /聊天小程序(单播)/Server/聊天室.vcxproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | Win32 7 | 8 | 9 | Release 10 | Win32 11 | 12 | 13 | 14 | {47167546-9153-4EBC-9B05-8BCEE0DCDBB9} 15 | Win32Proj 16 | 聊天室 17 | Server 18 | 19 | 20 | 21 | Application 22 | true 23 | v120 24 | Unicode 25 | 26 | 27 | Application 28 | false 29 | v120 30 | true 31 | Unicode 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | true 45 | 46 | 47 | false 48 | 49 | 50 | 51 | Use 52 | Level3 53 | Disabled 54 | WIN32;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) 55 | 56 | 57 | Console 58 | true 59 | 60 | 61 | 62 | 63 | Level3 64 | Use 65 | MaxSpeed 66 | true 67 | true 68 | WIN32;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) 69 | 70 | 71 | Console 72 | true 73 | true 74 | true 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | Create 87 | Create 88 | 89 | 90 | 91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /聊天小程序(单播)/Server/聊天室.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hh;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 头文件 23 | 24 | 25 | 头文件 26 | 27 | 28 | 29 | 30 | 源文件 31 | 32 | 33 | 源文件 34 | 35 | 36 | --------------------------------------------------------------------------------