├── 1 ├── Client │ ├── ClientC.sln │ ├── ClientC │ │ ├── ClientC.cpp │ │ ├── ClientC.vcxproj │ │ ├── ClientC.vcxproj.filters │ │ ├── ClientC.vcxproj.user │ │ ├── Debug │ │ │ ├── ClientC.log │ │ │ ├── ClientC.obj │ │ │ ├── ClientC.pch │ │ │ ├── ClientC.tlog │ │ │ │ ├── CL.command.1.tlog │ │ │ │ ├── CL.read.1.tlog │ │ │ │ ├── CL.write.1.tlog │ │ │ │ ├── ClientC.lastbuildstate │ │ │ │ ├── link.command.1.tlog │ │ │ │ ├── link.read.1.tlog │ │ │ │ └── link.write.1.tlog │ │ │ ├── stdafx.obj │ │ │ ├── vc141.idb │ │ │ └── vc141.pdb │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ └── Debug │ │ ├── ClientC.exe │ │ ├── ClientC.ilk │ │ └── ClientC.pdb └── Server │ ├── Debug │ ├── ServerS.exe │ ├── ServerS.ilk │ └── ServerS.pdb │ ├── ServerS.sln │ └── ServerS │ ├── Debug │ ├── ServerS.log │ ├── ServerS.obj │ ├── ServerS.pch │ ├── ServerS.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── ServerS.lastbuildstate │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── stdafx.obj │ ├── vc141.idb │ └── vc141.pdb │ ├── ServerS.cpp │ ├── ServerS.vcxproj │ ├── ServerS.vcxproj.filters │ ├── ServerS.vcxproj.user │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── 2 ├── Client │ ├── ClientC.sln │ ├── ClientC │ │ ├── ClientC.cpp │ │ ├── ClientC.vcxproj │ │ ├── ClientC.vcxproj.filters │ │ ├── ClientC.vcxproj.user │ │ ├── Debug │ │ │ ├── ClientC.log │ │ │ ├── ClientC.obj │ │ │ ├── ClientC.pch │ │ │ ├── ClientC.tlog │ │ │ │ ├── CL.command.1.tlog │ │ │ │ ├── CL.read.1.tlog │ │ │ │ ├── CL.write.1.tlog │ │ │ │ ├── ClientC.lastbuildstate │ │ │ │ ├── link.command.1.tlog │ │ │ │ ├── link.read.1.tlog │ │ │ │ └── link.write.1.tlog │ │ │ ├── stdafx.obj │ │ │ ├── vc141.idb │ │ │ └── vc141.pdb │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ └── Debug │ │ ├── ClientC.exe │ │ ├── ClientC.ilk │ │ └── ClientC.pdb └── Server │ ├── Debug │ ├── ServerS.exe │ ├── ServerS.ilk │ └── ServerS.pdb │ ├── ServerS.sln │ └── ServerS │ ├── Debug │ ├── ServerS.log │ ├── ServerS.obj │ ├── ServerS.pch │ ├── ServerS.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── ServerS.lastbuildstate │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── stdafx.obj │ ├── vc141.idb │ └── vc141.pdb │ ├── ServerS.cpp │ ├── ServerS.vcxproj │ ├── ServerS.vcxproj.filters │ ├── ServerS.vcxproj.user │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── 3 ├── Client │ ├── ClientC.sln │ ├── ClientC │ │ ├── ClientC.cpp │ │ ├── ClientC.vcxproj │ │ ├── ClientC.vcxproj.filters │ │ ├── ClientC.vcxproj.user │ │ ├── Debug │ │ │ ├── ClientC.log │ │ │ ├── ClientC.obj │ │ │ ├── ClientC.pch │ │ │ ├── ClientC.tlog │ │ │ │ ├── CL.command.1.tlog │ │ │ │ ├── CL.read.1.tlog │ │ │ │ ├── CL.write.1.tlog │ │ │ │ ├── ClientC.lastbuildstate │ │ │ │ ├── link.command.1.tlog │ │ │ │ ├── link.read.1.tlog │ │ │ │ └── link.write.1.tlog │ │ │ ├── stdafx.obj │ │ │ ├── vc141.idb │ │ │ └── vc141.pdb │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ └── Debug │ │ ├── ClientC.exe │ │ ├── ClientC.ilk │ │ └── ClientC.pdb └── Server │ ├── Debug │ ├── ServerS.exe │ ├── ServerS.ilk │ └── ServerS.pdb │ ├── ServerS.sln │ └── ServerS │ ├── Debug │ ├── ServerS.log │ ├── ServerS.obj │ ├── ServerS.pch │ ├── ServerS.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── ServerS.lastbuildstate │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── stdafx.obj │ ├── vc141.idb │ └── vc141.pdb │ ├── ServerS.cpp │ ├── ServerS.vcxproj │ ├── ServerS.vcxproj.filters │ ├── ServerS.vcxproj.user │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── 4 ├── Client │ ├── ClientC.sln │ ├── ClientC │ │ ├── ClientC.cpp │ │ ├── ClientC.vcxproj │ │ ├── ClientC.vcxproj.filters │ │ ├── ClientC.vcxproj.user │ │ ├── Debug │ │ │ ├── ClientC.log │ │ │ ├── ClientC.obj │ │ │ ├── ClientC.pch │ │ │ ├── ClientC.tlog │ │ │ │ ├── CL.command.1.tlog │ │ │ │ ├── CL.read.1.tlog │ │ │ │ ├── CL.write.1.tlog │ │ │ │ ├── ClientC.lastbuildstate │ │ │ │ ├── link.command.1.tlog │ │ │ │ ├── link.read.1.tlog │ │ │ │ └── link.write.1.tlog │ │ │ ├── stdafx.obj │ │ │ ├── vc141.idb │ │ │ └── vc141.pdb │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ └── Debug │ │ ├── ClientC.exe │ │ ├── ClientC.ilk │ │ └── ClientC.pdb └── Server │ ├── Debug │ ├── ServerS.exe │ ├── ServerS.ilk │ └── ServerS.pdb │ ├── ServerS.sln │ └── ServerS │ ├── Debug │ ├── ServerS.log │ ├── ServerS.obj │ ├── ServerS.pch │ ├── ServerS.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── ServerS.lastbuildstate │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── stdafx.obj │ ├── vc141.idb │ └── vc141.pdb │ ├── ServerS.cpp │ ├── ServerS.vcxproj │ ├── ServerS.vcxproj.filters │ ├── ServerS.vcxproj.user │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── .gitignore ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/.gitignore -------------------------------------------------------------------------------- /1/Client/ClientC.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Client/ClientC.sln -------------------------------------------------------------------------------- /1/Client/ClientC/ClientC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Client/ClientC/ClientC.cpp -------------------------------------------------------------------------------- /1/Client/ClientC/ClientC.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Client/ClientC/ClientC.vcxproj -------------------------------------------------------------------------------- /1/Client/ClientC/ClientC.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Client/ClientC/ClientC.vcxproj.filters -------------------------------------------------------------------------------- /1/Client/ClientC/ClientC.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Client/ClientC/ClientC.vcxproj.user -------------------------------------------------------------------------------- /1/Client/ClientC/Debug/ClientC.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Client/ClientC/Debug/ClientC.log -------------------------------------------------------------------------------- /1/Client/ClientC/Debug/ClientC.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Client/ClientC/Debug/ClientC.obj -------------------------------------------------------------------------------- /1/Client/ClientC/Debug/ClientC.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Client/ClientC/Debug/ClientC.pch -------------------------------------------------------------------------------- /1/Client/ClientC/Debug/ClientC.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Client/ClientC/Debug/ClientC.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /1/Client/ClientC/Debug/ClientC.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Client/ClientC/Debug/ClientC.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /1/Client/ClientC/Debug/ClientC.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Client/ClientC/Debug/ClientC.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /1/Client/ClientC/Debug/ClientC.tlog/ClientC.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Client/ClientC/Debug/ClientC.tlog/ClientC.lastbuildstate -------------------------------------------------------------------------------- /1/Client/ClientC/Debug/ClientC.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Client/ClientC/Debug/ClientC.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /1/Client/ClientC/Debug/ClientC.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Client/ClientC/Debug/ClientC.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /1/Client/ClientC/Debug/ClientC.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Client/ClientC/Debug/ClientC.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /1/Client/ClientC/Debug/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Client/ClientC/Debug/stdafx.obj -------------------------------------------------------------------------------- /1/Client/ClientC/Debug/vc141.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Client/ClientC/Debug/vc141.idb -------------------------------------------------------------------------------- /1/Client/ClientC/Debug/vc141.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Client/ClientC/Debug/vc141.pdb -------------------------------------------------------------------------------- /1/Client/ClientC/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Client/ClientC/stdafx.cpp -------------------------------------------------------------------------------- /1/Client/ClientC/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Client/ClientC/stdafx.h -------------------------------------------------------------------------------- /1/Client/ClientC/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Client/ClientC/targetver.h -------------------------------------------------------------------------------- /1/Client/Debug/ClientC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Client/Debug/ClientC.exe -------------------------------------------------------------------------------- /1/Client/Debug/ClientC.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Client/Debug/ClientC.ilk -------------------------------------------------------------------------------- /1/Client/Debug/ClientC.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Client/Debug/ClientC.pdb -------------------------------------------------------------------------------- /1/Server/Debug/ServerS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Server/Debug/ServerS.exe -------------------------------------------------------------------------------- /1/Server/Debug/ServerS.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Server/Debug/ServerS.ilk -------------------------------------------------------------------------------- /1/Server/Debug/ServerS.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Server/Debug/ServerS.pdb -------------------------------------------------------------------------------- /1/Server/ServerS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Server/ServerS.sln -------------------------------------------------------------------------------- /1/Server/ServerS/Debug/ServerS.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Server/ServerS/Debug/ServerS.log -------------------------------------------------------------------------------- /1/Server/ServerS/Debug/ServerS.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Server/ServerS/Debug/ServerS.obj -------------------------------------------------------------------------------- /1/Server/ServerS/Debug/ServerS.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Server/ServerS/Debug/ServerS.pch -------------------------------------------------------------------------------- /1/Server/ServerS/Debug/ServerS.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Server/ServerS/Debug/ServerS.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /1/Server/ServerS/Debug/ServerS.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Server/ServerS/Debug/ServerS.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /1/Server/ServerS/Debug/ServerS.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Server/ServerS/Debug/ServerS.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /1/Server/ServerS/Debug/ServerS.tlog/ServerS.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Server/ServerS/Debug/ServerS.tlog/ServerS.lastbuildstate -------------------------------------------------------------------------------- /1/Server/ServerS/Debug/ServerS.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Server/ServerS/Debug/ServerS.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /1/Server/ServerS/Debug/ServerS.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Server/ServerS/Debug/ServerS.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /1/Server/ServerS/Debug/ServerS.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Server/ServerS/Debug/ServerS.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /1/Server/ServerS/Debug/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Server/ServerS/Debug/stdafx.obj -------------------------------------------------------------------------------- /1/Server/ServerS/Debug/vc141.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Server/ServerS/Debug/vc141.idb -------------------------------------------------------------------------------- /1/Server/ServerS/Debug/vc141.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Server/ServerS/Debug/vc141.pdb -------------------------------------------------------------------------------- /1/Server/ServerS/ServerS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Server/ServerS/ServerS.cpp -------------------------------------------------------------------------------- /1/Server/ServerS/ServerS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Server/ServerS/ServerS.vcxproj -------------------------------------------------------------------------------- /1/Server/ServerS/ServerS.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Server/ServerS/ServerS.vcxproj.filters -------------------------------------------------------------------------------- /1/Server/ServerS/ServerS.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Server/ServerS/ServerS.vcxproj.user -------------------------------------------------------------------------------- /1/Server/ServerS/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Server/ServerS/stdafx.cpp -------------------------------------------------------------------------------- /1/Server/ServerS/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Server/ServerS/stdafx.h -------------------------------------------------------------------------------- /1/Server/ServerS/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/1/Server/ServerS/targetver.h -------------------------------------------------------------------------------- /2/Client/ClientC.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Client/ClientC.sln -------------------------------------------------------------------------------- /2/Client/ClientC/ClientC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Client/ClientC/ClientC.cpp -------------------------------------------------------------------------------- /2/Client/ClientC/ClientC.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Client/ClientC/ClientC.vcxproj -------------------------------------------------------------------------------- /2/Client/ClientC/ClientC.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Client/ClientC/ClientC.vcxproj.filters -------------------------------------------------------------------------------- /2/Client/ClientC/ClientC.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Client/ClientC/ClientC.vcxproj.user -------------------------------------------------------------------------------- /2/Client/ClientC/Debug/ClientC.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Client/ClientC/Debug/ClientC.log -------------------------------------------------------------------------------- /2/Client/ClientC/Debug/ClientC.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Client/ClientC/Debug/ClientC.obj -------------------------------------------------------------------------------- /2/Client/ClientC/Debug/ClientC.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Client/ClientC/Debug/ClientC.pch -------------------------------------------------------------------------------- /2/Client/ClientC/Debug/ClientC.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Client/ClientC/Debug/ClientC.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /2/Client/ClientC/Debug/ClientC.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Client/ClientC/Debug/ClientC.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /2/Client/ClientC/Debug/ClientC.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Client/ClientC/Debug/ClientC.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /2/Client/ClientC/Debug/ClientC.tlog/ClientC.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Client/ClientC/Debug/ClientC.tlog/ClientC.lastbuildstate -------------------------------------------------------------------------------- /2/Client/ClientC/Debug/ClientC.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Client/ClientC/Debug/ClientC.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /2/Client/ClientC/Debug/ClientC.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Client/ClientC/Debug/ClientC.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /2/Client/ClientC/Debug/ClientC.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Client/ClientC/Debug/ClientC.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /2/Client/ClientC/Debug/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Client/ClientC/Debug/stdafx.obj -------------------------------------------------------------------------------- /2/Client/ClientC/Debug/vc141.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Client/ClientC/Debug/vc141.idb -------------------------------------------------------------------------------- /2/Client/ClientC/Debug/vc141.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Client/ClientC/Debug/vc141.pdb -------------------------------------------------------------------------------- /2/Client/ClientC/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Client/ClientC/stdafx.cpp -------------------------------------------------------------------------------- /2/Client/ClientC/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Client/ClientC/stdafx.h -------------------------------------------------------------------------------- /2/Client/ClientC/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Client/ClientC/targetver.h -------------------------------------------------------------------------------- /2/Client/Debug/ClientC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Client/Debug/ClientC.exe -------------------------------------------------------------------------------- /2/Client/Debug/ClientC.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Client/Debug/ClientC.ilk -------------------------------------------------------------------------------- /2/Client/Debug/ClientC.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Client/Debug/ClientC.pdb -------------------------------------------------------------------------------- /2/Server/Debug/ServerS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Server/Debug/ServerS.exe -------------------------------------------------------------------------------- /2/Server/Debug/ServerS.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Server/Debug/ServerS.ilk -------------------------------------------------------------------------------- /2/Server/Debug/ServerS.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Server/Debug/ServerS.pdb -------------------------------------------------------------------------------- /2/Server/ServerS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Server/ServerS.sln -------------------------------------------------------------------------------- /2/Server/ServerS/Debug/ServerS.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Server/ServerS/Debug/ServerS.log -------------------------------------------------------------------------------- /2/Server/ServerS/Debug/ServerS.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Server/ServerS/Debug/ServerS.obj -------------------------------------------------------------------------------- /2/Server/ServerS/Debug/ServerS.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Server/ServerS/Debug/ServerS.pch -------------------------------------------------------------------------------- /2/Server/ServerS/Debug/ServerS.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Server/ServerS/Debug/ServerS.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /2/Server/ServerS/Debug/ServerS.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Server/ServerS/Debug/ServerS.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /2/Server/ServerS/Debug/ServerS.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Server/ServerS/Debug/ServerS.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /2/Server/ServerS/Debug/ServerS.tlog/ServerS.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Server/ServerS/Debug/ServerS.tlog/ServerS.lastbuildstate -------------------------------------------------------------------------------- /2/Server/ServerS/Debug/ServerS.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Server/ServerS/Debug/ServerS.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /2/Server/ServerS/Debug/ServerS.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Server/ServerS/Debug/ServerS.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /2/Server/ServerS/Debug/ServerS.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Server/ServerS/Debug/ServerS.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /2/Server/ServerS/Debug/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Server/ServerS/Debug/stdafx.obj -------------------------------------------------------------------------------- /2/Server/ServerS/Debug/vc141.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Server/ServerS/Debug/vc141.idb -------------------------------------------------------------------------------- /2/Server/ServerS/Debug/vc141.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Server/ServerS/Debug/vc141.pdb -------------------------------------------------------------------------------- /2/Server/ServerS/ServerS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Server/ServerS/ServerS.cpp -------------------------------------------------------------------------------- /2/Server/ServerS/ServerS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Server/ServerS/ServerS.vcxproj -------------------------------------------------------------------------------- /2/Server/ServerS/ServerS.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Server/ServerS/ServerS.vcxproj.filters -------------------------------------------------------------------------------- /2/Server/ServerS/ServerS.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Server/ServerS/ServerS.vcxproj.user -------------------------------------------------------------------------------- /2/Server/ServerS/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Server/ServerS/stdafx.cpp -------------------------------------------------------------------------------- /2/Server/ServerS/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Server/ServerS/stdafx.h -------------------------------------------------------------------------------- /2/Server/ServerS/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/2/Server/ServerS/targetver.h -------------------------------------------------------------------------------- /3/Client/ClientC.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Client/ClientC.sln -------------------------------------------------------------------------------- /3/Client/ClientC/ClientC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Client/ClientC/ClientC.cpp -------------------------------------------------------------------------------- /3/Client/ClientC/ClientC.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Client/ClientC/ClientC.vcxproj -------------------------------------------------------------------------------- /3/Client/ClientC/ClientC.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Client/ClientC/ClientC.vcxproj.filters -------------------------------------------------------------------------------- /3/Client/ClientC/ClientC.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Client/ClientC/ClientC.vcxproj.user -------------------------------------------------------------------------------- /3/Client/ClientC/Debug/ClientC.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Client/ClientC/Debug/ClientC.log -------------------------------------------------------------------------------- /3/Client/ClientC/Debug/ClientC.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Client/ClientC/Debug/ClientC.obj -------------------------------------------------------------------------------- /3/Client/ClientC/Debug/ClientC.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Client/ClientC/Debug/ClientC.pch -------------------------------------------------------------------------------- /3/Client/ClientC/Debug/ClientC.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Client/ClientC/Debug/ClientC.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /3/Client/ClientC/Debug/ClientC.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Client/ClientC/Debug/ClientC.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /3/Client/ClientC/Debug/ClientC.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Client/ClientC/Debug/ClientC.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /3/Client/ClientC/Debug/ClientC.tlog/ClientC.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Client/ClientC/Debug/ClientC.tlog/ClientC.lastbuildstate -------------------------------------------------------------------------------- /3/Client/ClientC/Debug/ClientC.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Client/ClientC/Debug/ClientC.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /3/Client/ClientC/Debug/ClientC.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Client/ClientC/Debug/ClientC.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /3/Client/ClientC/Debug/ClientC.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Client/ClientC/Debug/ClientC.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /3/Client/ClientC/Debug/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Client/ClientC/Debug/stdafx.obj -------------------------------------------------------------------------------- /3/Client/ClientC/Debug/vc141.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Client/ClientC/Debug/vc141.idb -------------------------------------------------------------------------------- /3/Client/ClientC/Debug/vc141.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Client/ClientC/Debug/vc141.pdb -------------------------------------------------------------------------------- /3/Client/ClientC/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Client/ClientC/stdafx.cpp -------------------------------------------------------------------------------- /3/Client/ClientC/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Client/ClientC/stdafx.h -------------------------------------------------------------------------------- /3/Client/ClientC/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Client/ClientC/targetver.h -------------------------------------------------------------------------------- /3/Client/Debug/ClientC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Client/Debug/ClientC.exe -------------------------------------------------------------------------------- /3/Client/Debug/ClientC.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Client/Debug/ClientC.ilk -------------------------------------------------------------------------------- /3/Client/Debug/ClientC.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Client/Debug/ClientC.pdb -------------------------------------------------------------------------------- /3/Server/Debug/ServerS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Server/Debug/ServerS.exe -------------------------------------------------------------------------------- /3/Server/Debug/ServerS.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Server/Debug/ServerS.ilk -------------------------------------------------------------------------------- /3/Server/Debug/ServerS.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Server/Debug/ServerS.pdb -------------------------------------------------------------------------------- /3/Server/ServerS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Server/ServerS.sln -------------------------------------------------------------------------------- /3/Server/ServerS/Debug/ServerS.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Server/ServerS/Debug/ServerS.log -------------------------------------------------------------------------------- /3/Server/ServerS/Debug/ServerS.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Server/ServerS/Debug/ServerS.obj -------------------------------------------------------------------------------- /3/Server/ServerS/Debug/ServerS.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Server/ServerS/Debug/ServerS.pch -------------------------------------------------------------------------------- /3/Server/ServerS/Debug/ServerS.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Server/ServerS/Debug/ServerS.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /3/Server/ServerS/Debug/ServerS.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Server/ServerS/Debug/ServerS.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /3/Server/ServerS/Debug/ServerS.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Server/ServerS/Debug/ServerS.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /3/Server/ServerS/Debug/ServerS.tlog/ServerS.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Server/ServerS/Debug/ServerS.tlog/ServerS.lastbuildstate -------------------------------------------------------------------------------- /3/Server/ServerS/Debug/ServerS.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Server/ServerS/Debug/ServerS.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /3/Server/ServerS/Debug/ServerS.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Server/ServerS/Debug/ServerS.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /3/Server/ServerS/Debug/ServerS.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Server/ServerS/Debug/ServerS.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /3/Server/ServerS/Debug/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Server/ServerS/Debug/stdafx.obj -------------------------------------------------------------------------------- /3/Server/ServerS/Debug/vc141.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Server/ServerS/Debug/vc141.idb -------------------------------------------------------------------------------- /3/Server/ServerS/Debug/vc141.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Server/ServerS/Debug/vc141.pdb -------------------------------------------------------------------------------- /3/Server/ServerS/ServerS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Server/ServerS/ServerS.cpp -------------------------------------------------------------------------------- /3/Server/ServerS/ServerS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Server/ServerS/ServerS.vcxproj -------------------------------------------------------------------------------- /3/Server/ServerS/ServerS.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Server/ServerS/ServerS.vcxproj.filters -------------------------------------------------------------------------------- /3/Server/ServerS/ServerS.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Server/ServerS/ServerS.vcxproj.user -------------------------------------------------------------------------------- /3/Server/ServerS/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Server/ServerS/stdafx.cpp -------------------------------------------------------------------------------- /3/Server/ServerS/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Server/ServerS/stdafx.h -------------------------------------------------------------------------------- /3/Server/ServerS/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/3/Server/ServerS/targetver.h -------------------------------------------------------------------------------- /4/Client/ClientC.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Client/ClientC.sln -------------------------------------------------------------------------------- /4/Client/ClientC/ClientC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Client/ClientC/ClientC.cpp -------------------------------------------------------------------------------- /4/Client/ClientC/ClientC.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Client/ClientC/ClientC.vcxproj -------------------------------------------------------------------------------- /4/Client/ClientC/ClientC.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Client/ClientC/ClientC.vcxproj.filters -------------------------------------------------------------------------------- /4/Client/ClientC/ClientC.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Client/ClientC/ClientC.vcxproj.user -------------------------------------------------------------------------------- /4/Client/ClientC/Debug/ClientC.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Client/ClientC/Debug/ClientC.log -------------------------------------------------------------------------------- /4/Client/ClientC/Debug/ClientC.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Client/ClientC/Debug/ClientC.obj -------------------------------------------------------------------------------- /4/Client/ClientC/Debug/ClientC.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Client/ClientC/Debug/ClientC.pch -------------------------------------------------------------------------------- /4/Client/ClientC/Debug/ClientC.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Client/ClientC/Debug/ClientC.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /4/Client/ClientC/Debug/ClientC.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Client/ClientC/Debug/ClientC.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /4/Client/ClientC/Debug/ClientC.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Client/ClientC/Debug/ClientC.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /4/Client/ClientC/Debug/ClientC.tlog/ClientC.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Client/ClientC/Debug/ClientC.tlog/ClientC.lastbuildstate -------------------------------------------------------------------------------- /4/Client/ClientC/Debug/ClientC.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Client/ClientC/Debug/ClientC.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /4/Client/ClientC/Debug/ClientC.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Client/ClientC/Debug/ClientC.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /4/Client/ClientC/Debug/ClientC.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Client/ClientC/Debug/ClientC.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /4/Client/ClientC/Debug/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Client/ClientC/Debug/stdafx.obj -------------------------------------------------------------------------------- /4/Client/ClientC/Debug/vc141.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Client/ClientC/Debug/vc141.idb -------------------------------------------------------------------------------- /4/Client/ClientC/Debug/vc141.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Client/ClientC/Debug/vc141.pdb -------------------------------------------------------------------------------- /4/Client/ClientC/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Client/ClientC/stdafx.cpp -------------------------------------------------------------------------------- /4/Client/ClientC/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Client/ClientC/stdafx.h -------------------------------------------------------------------------------- /4/Client/ClientC/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Client/ClientC/targetver.h -------------------------------------------------------------------------------- /4/Client/Debug/ClientC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Client/Debug/ClientC.exe -------------------------------------------------------------------------------- /4/Client/Debug/ClientC.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Client/Debug/ClientC.ilk -------------------------------------------------------------------------------- /4/Client/Debug/ClientC.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Client/Debug/ClientC.pdb -------------------------------------------------------------------------------- /4/Server/Debug/ServerS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Server/Debug/ServerS.exe -------------------------------------------------------------------------------- /4/Server/Debug/ServerS.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Server/Debug/ServerS.ilk -------------------------------------------------------------------------------- /4/Server/Debug/ServerS.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Server/Debug/ServerS.pdb -------------------------------------------------------------------------------- /4/Server/ServerS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Server/ServerS.sln -------------------------------------------------------------------------------- /4/Server/ServerS/Debug/ServerS.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Server/ServerS/Debug/ServerS.log -------------------------------------------------------------------------------- /4/Server/ServerS/Debug/ServerS.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Server/ServerS/Debug/ServerS.obj -------------------------------------------------------------------------------- /4/Server/ServerS/Debug/ServerS.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Server/ServerS/Debug/ServerS.pch -------------------------------------------------------------------------------- /4/Server/ServerS/Debug/ServerS.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Server/ServerS/Debug/ServerS.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /4/Server/ServerS/Debug/ServerS.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Server/ServerS/Debug/ServerS.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /4/Server/ServerS/Debug/ServerS.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Server/ServerS/Debug/ServerS.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /4/Server/ServerS/Debug/ServerS.tlog/ServerS.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Server/ServerS/Debug/ServerS.tlog/ServerS.lastbuildstate -------------------------------------------------------------------------------- /4/Server/ServerS/Debug/ServerS.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Server/ServerS/Debug/ServerS.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /4/Server/ServerS/Debug/ServerS.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Server/ServerS/Debug/ServerS.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /4/Server/ServerS/Debug/ServerS.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Server/ServerS/Debug/ServerS.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /4/Server/ServerS/Debug/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Server/ServerS/Debug/stdafx.obj -------------------------------------------------------------------------------- /4/Server/ServerS/Debug/vc141.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Server/ServerS/Debug/vc141.idb -------------------------------------------------------------------------------- /4/Server/ServerS/Debug/vc141.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Server/ServerS/Debug/vc141.pdb -------------------------------------------------------------------------------- /4/Server/ServerS/ServerS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Server/ServerS/ServerS.cpp -------------------------------------------------------------------------------- /4/Server/ServerS/ServerS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Server/ServerS/ServerS.vcxproj -------------------------------------------------------------------------------- /4/Server/ServerS/ServerS.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Server/ServerS/ServerS.vcxproj.filters -------------------------------------------------------------------------------- /4/Server/ServerS/ServerS.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Server/ServerS/ServerS.vcxproj.user -------------------------------------------------------------------------------- /4/Server/ServerS/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Server/ServerS/stdafx.cpp -------------------------------------------------------------------------------- /4/Server/ServerS/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Server/ServerS/stdafx.h -------------------------------------------------------------------------------- /4/Server/ServerS/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/4/Server/ServerS/targetver.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojld0/Lessons/HEAD/README.md --------------------------------------------------------------------------------