├── .gitattributes ├── AndroidManifest.template.xml ├── Demos ├── ChatDemo │ ├── Client │ │ ├── ChatClient.dpr │ │ ├── ChatClient.dproj │ │ ├── ChatClient.dproj.local │ │ ├── ChatClient.dsk │ │ ├── ChatClient.identcache │ │ ├── ChatClient.res │ │ ├── ufrmMain.fmx │ │ └── ufrmMain.pas │ └── Server │ │ ├── ChatServer.dpr │ │ ├── ChatServer.dproj │ │ ├── ChatServer.dproj.local │ │ ├── ChatServer.dsk │ │ ├── ChatServer.identcache │ │ ├── ChatServer.res │ │ ├── ufrmMain.fmx │ │ └── ufrmMain.pas ├── DB │ ├── ChatDemo │ │ ├── Client │ │ │ ├── ChatClient.dpr │ │ │ ├── ChatClient.dproj │ │ │ ├── ChatClient.dproj.local │ │ │ ├── ChatClient.dsk │ │ │ ├── ChatClient.identcache │ │ │ ├── ChatClient.res │ │ │ ├── Initial.txt │ │ │ ├── ufrmMain.fmx │ │ │ └── ufrmMain.pas │ │ ├── Server │ │ │ └── Initial.txt │ │ └── initial.txt │ ├── DBClient │ │ ├── DBClient.dpr │ │ ├── DBClient.dproj │ │ ├── DBClient.dproj.local │ │ ├── DBClient.dsk │ │ ├── DBClient.identcache │ │ ├── DBClient.res │ │ ├── DBClient.skincfg │ │ ├── DBClient_Icon.ico │ │ ├── udmMain.dfm │ │ ├── udmMain.pas │ │ ├── ufrmMain.dfm │ │ └── ufrmMain.pas │ └── DBServer │ │ ├── Service │ │ ├── DBServerService.dpr │ │ ├── DBServerService.dproj │ │ ├── DBServerService.dproj.local │ │ ├── DBServerService.dsk │ │ ├── DBServerService.identcache │ │ ├── DBServerService.res │ │ ├── DBServerService.skincfg │ │ ├── DBServerService_Icon.ico │ │ ├── uscvServiceCommands.pas │ │ ├── usvcMain.dfm │ │ └── usvcMain.pas │ │ ├── ServiceApplication │ │ ├── DBServerApplication.dpr │ │ ├── DBServerApplication.dproj │ │ ├── DBServerApplication.dproj.local │ │ ├── DBServerApplication.dsk │ │ ├── DBServerApplication.identcache │ │ ├── DBServerApplication.res │ │ ├── DBServerApplication.skincfg │ │ ├── DBServerApplication_Icon.ico │ │ ├── ufrmMain.dfm │ │ └── ufrmMain.pas │ │ └── TestData │ │ └── Customers.mdb ├── NetComVSIndy │ ├── Client │ │ ├── NetComVSIndyClient.dpr │ │ ├── NetComVSIndyClient.dproj │ │ ├── NetComVSIndyClient.dproj.local │ │ ├── NetComVSIndyClient.dsk │ │ ├── NetComVSIndyClient.identcache │ │ ├── NetComVSIndyClient.res │ │ ├── ufrmMain.dfm │ │ └── ufrmMain.pas │ └── Server │ │ ├── NetComVSIndyServer.dpr │ │ ├── NetComVSIndyServer.dproj │ │ ├── NetComVSIndyServer.dproj.local │ │ ├── NetComVSIndyServer.dsk │ │ ├── NetComVSIndyServer.identcache │ │ ├── NetComVSIndyServer.res │ │ ├── ufrmMain.dfm │ │ └── ufrmMain.pas ├── SimpleSockets │ ├── Client.dpr │ ├── Client.dproj │ ├── Client.dproj.local │ ├── Client.dsk │ ├── Client.identcache │ ├── Client.res │ ├── Client.skincfg │ ├── Client_Icon.ico │ ├── Srv │ │ ├── Server.dpr │ │ ├── Server.dproj │ │ ├── Server.dproj.local │ │ ├── Server.dsk │ │ ├── Server.identcache │ │ ├── Server.res │ │ ├── Server.skincfg │ │ ├── Server_Icon.ico │ │ ├── ufrmMain.dfm │ │ └── ufrmMain.pas │ ├── ufrmMain.dfm │ └── ufrmMain.pas └── VideoChat │ ├── Client │ ├── AndroidManifest.template.xml │ ├── VideoChatClient.deployproj │ ├── VideoChatClient.dpr │ ├── VideoChatClient.dproj │ ├── VideoChatClient.dproj.local │ ├── VideoChatClient.dsk │ ├── VideoChatClient.identcache │ ├── VideoChatClient.res │ ├── ufrmMain.fmx │ └── ufrmMain.pas │ └── Server │ ├── AndroidManifest.template.xml │ ├── CommonCommands.pas │ ├── VideoChatServer.dpr │ ├── VideoChatServer.dproj │ ├── VideoChatServer.dproj.local │ ├── VideoChatServer.dsk │ ├── VideoChatServer.identcache │ ├── VideoChatServer.res │ ├── ufrmMain.fmx │ └── ufrmMain.pas ├── LICENSE ├── NetCom7.dpk ├── NetCom7.dproj ├── NetCom7.dproj.local ├── NetCom7.dres ├── NetCom7.dsk ├── NetCom7.identcache ├── NetCom7.res ├── NetCom7.skincfg ├── NetCom7.stat ├── NetCom7Resource.rc ├── PaletteIcons ├── TncIcon.bmp └── TncIcon.png ├── README.md └── Source ├── Encryption ├── ncEncBlockciphers.pas ├── ncEncBlowfish.pas ├── ncEncCast128.pas ├── ncEncCast256.pas ├── ncEncCrypt2.pas ├── ncEncDes.pas ├── ncEncHaval.pas ├── ncEncIce.pas ├── ncEncIdea.pas ├── ncEncMars.pas ├── ncEncMd4.pas ├── ncEncMd5.pas ├── ncEncMisty1.pas ├── ncEncRc2.pas ├── ncEncRc4.pas ├── ncEncRc5.pas ├── ncEncRc6.pas ├── ncEncRijndael.pas ├── ncEncRipemd128.pas ├── ncEncRipemd160.pas ├── ncEncSerpent.pas ├── ncEncSha1.pas ├── ncEncSha256.pas ├── ncEncSha512.pas ├── ncEncTea.pas ├── ncEncTiger.pas └── ncEncTwofish.pas ├── NetComRegister.dcr ├── NetComRegister.pas ├── ncCommandHandlers.pas ├── ncCommandPacking.pas ├── ncCompression.pas ├── ncDBCnt.pas ├── ncDBCommands.pas ├── ncDBSrv.pas ├── ncEncryption.pas ├── ncLines.pas ├── ncPendingCommandsList.pas ├── ncSerializeADO.pas ├── ncSerializeValue.pas ├── ncSocketList.pas ├── ncSockets.pas ├── ncSources.pas └── ncThreads.pas /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/.gitattributes -------------------------------------------------------------------------------- /AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Demos/ChatDemo/Client/ChatClient.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/ChatDemo/Client/ChatClient.dpr -------------------------------------------------------------------------------- /Demos/ChatDemo/Client/ChatClient.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/ChatDemo/Client/ChatClient.dproj -------------------------------------------------------------------------------- /Demos/ChatDemo/Client/ChatClient.dproj.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/ChatDemo/Client/ChatClient.dproj.local -------------------------------------------------------------------------------- /Demos/ChatDemo/Client/ChatClient.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/ChatDemo/Client/ChatClient.dsk -------------------------------------------------------------------------------- /Demos/ChatDemo/Client/ChatClient.identcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/ChatDemo/Client/ChatClient.identcache -------------------------------------------------------------------------------- /Demos/ChatDemo/Client/ChatClient.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/ChatDemo/Client/ChatClient.res -------------------------------------------------------------------------------- /Demos/ChatDemo/Client/ufrmMain.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/ChatDemo/Client/ufrmMain.fmx -------------------------------------------------------------------------------- /Demos/ChatDemo/Client/ufrmMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/ChatDemo/Client/ufrmMain.pas -------------------------------------------------------------------------------- /Demos/ChatDemo/Server/ChatServer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/ChatDemo/Server/ChatServer.dpr -------------------------------------------------------------------------------- /Demos/ChatDemo/Server/ChatServer.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/ChatDemo/Server/ChatServer.dproj -------------------------------------------------------------------------------- /Demos/ChatDemo/Server/ChatServer.dproj.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/ChatDemo/Server/ChatServer.dproj.local -------------------------------------------------------------------------------- /Demos/ChatDemo/Server/ChatServer.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/ChatDemo/Server/ChatServer.dsk -------------------------------------------------------------------------------- /Demos/ChatDemo/Server/ChatServer.identcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/ChatDemo/Server/ChatServer.identcache -------------------------------------------------------------------------------- /Demos/ChatDemo/Server/ChatServer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/ChatDemo/Server/ChatServer.res -------------------------------------------------------------------------------- /Demos/ChatDemo/Server/ufrmMain.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/ChatDemo/Server/ufrmMain.fmx -------------------------------------------------------------------------------- /Demos/ChatDemo/Server/ufrmMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/ChatDemo/Server/ufrmMain.pas -------------------------------------------------------------------------------- /Demos/DB/ChatDemo/Client/ChatClient.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/ChatDemo/Client/ChatClient.dpr -------------------------------------------------------------------------------- /Demos/DB/ChatDemo/Client/ChatClient.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/ChatDemo/Client/ChatClient.dproj -------------------------------------------------------------------------------- /Demos/DB/ChatDemo/Client/ChatClient.dproj.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/ChatDemo/Client/ChatClient.dproj.local -------------------------------------------------------------------------------- /Demos/DB/ChatDemo/Client/ChatClient.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/ChatDemo/Client/ChatClient.dsk -------------------------------------------------------------------------------- /Demos/DB/ChatDemo/Client/ChatClient.identcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/ChatDemo/Client/ChatClient.identcache -------------------------------------------------------------------------------- /Demos/DB/ChatDemo/Client/ChatClient.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/ChatDemo/Client/ChatClient.res -------------------------------------------------------------------------------- /Demos/DB/ChatDemo/Client/Initial.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demos/DB/ChatDemo/Client/ufrmMain.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/ChatDemo/Client/ufrmMain.fmx -------------------------------------------------------------------------------- /Demos/DB/ChatDemo/Client/ufrmMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/ChatDemo/Client/ufrmMain.pas -------------------------------------------------------------------------------- /Demos/DB/ChatDemo/Server/Initial.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demos/DB/ChatDemo/initial.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demos/DB/DBClient/DBClient.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBClient/DBClient.dpr -------------------------------------------------------------------------------- /Demos/DB/DBClient/DBClient.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBClient/DBClient.dproj -------------------------------------------------------------------------------- /Demos/DB/DBClient/DBClient.dproj.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBClient/DBClient.dproj.local -------------------------------------------------------------------------------- /Demos/DB/DBClient/DBClient.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBClient/DBClient.dsk -------------------------------------------------------------------------------- /Demos/DB/DBClient/DBClient.identcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBClient/DBClient.identcache -------------------------------------------------------------------------------- /Demos/DB/DBClient/DBClient.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBClient/DBClient.res -------------------------------------------------------------------------------- /Demos/DB/DBClient/DBClient.skincfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBClient/DBClient.skincfg -------------------------------------------------------------------------------- /Demos/DB/DBClient/DBClient_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBClient/DBClient_Icon.ico -------------------------------------------------------------------------------- /Demos/DB/DBClient/udmMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBClient/udmMain.dfm -------------------------------------------------------------------------------- /Demos/DB/DBClient/udmMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBClient/udmMain.pas -------------------------------------------------------------------------------- /Demos/DB/DBClient/ufrmMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBClient/ufrmMain.dfm -------------------------------------------------------------------------------- /Demos/DB/DBClient/ufrmMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBClient/ufrmMain.pas -------------------------------------------------------------------------------- /Demos/DB/DBServer/Service/DBServerService.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBServer/Service/DBServerService.dpr -------------------------------------------------------------------------------- /Demos/DB/DBServer/Service/DBServerService.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBServer/Service/DBServerService.dproj -------------------------------------------------------------------------------- /Demos/DB/DBServer/Service/DBServerService.dproj.local: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Demos/DB/DBServer/Service/DBServerService.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBServer/Service/DBServerService.dsk -------------------------------------------------------------------------------- /Demos/DB/DBServer/Service/DBServerService.identcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBServer/Service/DBServerService.identcache -------------------------------------------------------------------------------- /Demos/DB/DBServer/Service/DBServerService.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBServer/Service/DBServerService.res -------------------------------------------------------------------------------- /Demos/DB/DBServer/Service/DBServerService.skincfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBServer/Service/DBServerService.skincfg -------------------------------------------------------------------------------- /Demos/DB/DBServer/Service/DBServerService_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBServer/Service/DBServerService_Icon.ico -------------------------------------------------------------------------------- /Demos/DB/DBServer/Service/uscvServiceCommands.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBServer/Service/uscvServiceCommands.pas -------------------------------------------------------------------------------- /Demos/DB/DBServer/Service/usvcMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBServer/Service/usvcMain.dfm -------------------------------------------------------------------------------- /Demos/DB/DBServer/Service/usvcMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBServer/Service/usvcMain.pas -------------------------------------------------------------------------------- /Demos/DB/DBServer/ServiceApplication/DBServerApplication.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBServer/ServiceApplication/DBServerApplication.dpr -------------------------------------------------------------------------------- /Demos/DB/DBServer/ServiceApplication/DBServerApplication.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBServer/ServiceApplication/DBServerApplication.dproj -------------------------------------------------------------------------------- /Demos/DB/DBServer/ServiceApplication/DBServerApplication.dproj.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBServer/ServiceApplication/DBServerApplication.dproj.local -------------------------------------------------------------------------------- /Demos/DB/DBServer/ServiceApplication/DBServerApplication.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBServer/ServiceApplication/DBServerApplication.dsk -------------------------------------------------------------------------------- /Demos/DB/DBServer/ServiceApplication/DBServerApplication.identcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBServer/ServiceApplication/DBServerApplication.identcache -------------------------------------------------------------------------------- /Demos/DB/DBServer/ServiceApplication/DBServerApplication.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBServer/ServiceApplication/DBServerApplication.res -------------------------------------------------------------------------------- /Demos/DB/DBServer/ServiceApplication/DBServerApplication.skincfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBServer/ServiceApplication/DBServerApplication.skincfg -------------------------------------------------------------------------------- /Demos/DB/DBServer/ServiceApplication/DBServerApplication_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBServer/ServiceApplication/DBServerApplication_Icon.ico -------------------------------------------------------------------------------- /Demos/DB/DBServer/ServiceApplication/ufrmMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBServer/ServiceApplication/ufrmMain.dfm -------------------------------------------------------------------------------- /Demos/DB/DBServer/ServiceApplication/ufrmMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBServer/ServiceApplication/ufrmMain.pas -------------------------------------------------------------------------------- /Demos/DB/DBServer/TestData/Customers.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/DB/DBServer/TestData/Customers.mdb -------------------------------------------------------------------------------- /Demos/NetComVSIndy/Client/NetComVSIndyClient.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/NetComVSIndy/Client/NetComVSIndyClient.dpr -------------------------------------------------------------------------------- /Demos/NetComVSIndy/Client/NetComVSIndyClient.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/NetComVSIndy/Client/NetComVSIndyClient.dproj -------------------------------------------------------------------------------- /Demos/NetComVSIndy/Client/NetComVSIndyClient.dproj.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/NetComVSIndy/Client/NetComVSIndyClient.dproj.local -------------------------------------------------------------------------------- /Demos/NetComVSIndy/Client/NetComVSIndyClient.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/NetComVSIndy/Client/NetComVSIndyClient.dsk -------------------------------------------------------------------------------- /Demos/NetComVSIndy/Client/NetComVSIndyClient.identcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/NetComVSIndy/Client/NetComVSIndyClient.identcache -------------------------------------------------------------------------------- /Demos/NetComVSIndy/Client/NetComVSIndyClient.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/NetComVSIndy/Client/NetComVSIndyClient.res -------------------------------------------------------------------------------- /Demos/NetComVSIndy/Client/ufrmMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/NetComVSIndy/Client/ufrmMain.dfm -------------------------------------------------------------------------------- /Demos/NetComVSIndy/Client/ufrmMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/NetComVSIndy/Client/ufrmMain.pas -------------------------------------------------------------------------------- /Demos/NetComVSIndy/Server/NetComVSIndyServer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/NetComVSIndy/Server/NetComVSIndyServer.dpr -------------------------------------------------------------------------------- /Demos/NetComVSIndy/Server/NetComVSIndyServer.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/NetComVSIndy/Server/NetComVSIndyServer.dproj -------------------------------------------------------------------------------- /Demos/NetComVSIndy/Server/NetComVSIndyServer.dproj.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/NetComVSIndy/Server/NetComVSIndyServer.dproj.local -------------------------------------------------------------------------------- /Demos/NetComVSIndy/Server/NetComVSIndyServer.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/NetComVSIndy/Server/NetComVSIndyServer.dsk -------------------------------------------------------------------------------- /Demos/NetComVSIndy/Server/NetComVSIndyServer.identcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/NetComVSIndy/Server/NetComVSIndyServer.identcache -------------------------------------------------------------------------------- /Demos/NetComVSIndy/Server/NetComVSIndyServer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/NetComVSIndy/Server/NetComVSIndyServer.res -------------------------------------------------------------------------------- /Demos/NetComVSIndy/Server/ufrmMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/NetComVSIndy/Server/ufrmMain.dfm -------------------------------------------------------------------------------- /Demos/NetComVSIndy/Server/ufrmMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/NetComVSIndy/Server/ufrmMain.pas -------------------------------------------------------------------------------- /Demos/SimpleSockets/Client.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/SimpleSockets/Client.dpr -------------------------------------------------------------------------------- /Demos/SimpleSockets/Client.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/SimpleSockets/Client.dproj -------------------------------------------------------------------------------- /Demos/SimpleSockets/Client.dproj.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/SimpleSockets/Client.dproj.local -------------------------------------------------------------------------------- /Demos/SimpleSockets/Client.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/SimpleSockets/Client.dsk -------------------------------------------------------------------------------- /Demos/SimpleSockets/Client.identcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/SimpleSockets/Client.identcache -------------------------------------------------------------------------------- /Demos/SimpleSockets/Client.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/SimpleSockets/Client.res -------------------------------------------------------------------------------- /Demos/SimpleSockets/Client.skincfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/SimpleSockets/Client.skincfg -------------------------------------------------------------------------------- /Demos/SimpleSockets/Client_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/SimpleSockets/Client_Icon.ico -------------------------------------------------------------------------------- /Demos/SimpleSockets/Srv/Server.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/SimpleSockets/Srv/Server.dpr -------------------------------------------------------------------------------- /Demos/SimpleSockets/Srv/Server.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/SimpleSockets/Srv/Server.dproj -------------------------------------------------------------------------------- /Demos/SimpleSockets/Srv/Server.dproj.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/SimpleSockets/Srv/Server.dproj.local -------------------------------------------------------------------------------- /Demos/SimpleSockets/Srv/Server.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/SimpleSockets/Srv/Server.dsk -------------------------------------------------------------------------------- /Demos/SimpleSockets/Srv/Server.identcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/SimpleSockets/Srv/Server.identcache -------------------------------------------------------------------------------- /Demos/SimpleSockets/Srv/Server.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/SimpleSockets/Srv/Server.res -------------------------------------------------------------------------------- /Demos/SimpleSockets/Srv/Server.skincfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/SimpleSockets/Srv/Server.skincfg -------------------------------------------------------------------------------- /Demos/SimpleSockets/Srv/Server_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/SimpleSockets/Srv/Server_Icon.ico -------------------------------------------------------------------------------- /Demos/SimpleSockets/Srv/ufrmMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/SimpleSockets/Srv/ufrmMain.dfm -------------------------------------------------------------------------------- /Demos/SimpleSockets/Srv/ufrmMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/SimpleSockets/Srv/ufrmMain.pas -------------------------------------------------------------------------------- /Demos/SimpleSockets/ufrmMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/SimpleSockets/ufrmMain.dfm -------------------------------------------------------------------------------- /Demos/SimpleSockets/ufrmMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/SimpleSockets/ufrmMain.pas -------------------------------------------------------------------------------- /Demos/VideoChat/Client/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/VideoChat/Client/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Demos/VideoChat/Client/VideoChatClient.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/VideoChat/Client/VideoChatClient.deployproj -------------------------------------------------------------------------------- /Demos/VideoChat/Client/VideoChatClient.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/VideoChat/Client/VideoChatClient.dpr -------------------------------------------------------------------------------- /Demos/VideoChat/Client/VideoChatClient.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/VideoChat/Client/VideoChatClient.dproj -------------------------------------------------------------------------------- /Demos/VideoChat/Client/VideoChatClient.dproj.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/VideoChat/Client/VideoChatClient.dproj.local -------------------------------------------------------------------------------- /Demos/VideoChat/Client/VideoChatClient.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/VideoChat/Client/VideoChatClient.dsk -------------------------------------------------------------------------------- /Demos/VideoChat/Client/VideoChatClient.identcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/VideoChat/Client/VideoChatClient.identcache -------------------------------------------------------------------------------- /Demos/VideoChat/Client/VideoChatClient.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/VideoChat/Client/VideoChatClient.res -------------------------------------------------------------------------------- /Demos/VideoChat/Client/ufrmMain.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/VideoChat/Client/ufrmMain.fmx -------------------------------------------------------------------------------- /Demos/VideoChat/Client/ufrmMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/VideoChat/Client/ufrmMain.pas -------------------------------------------------------------------------------- /Demos/VideoChat/Server/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/VideoChat/Server/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Demos/VideoChat/Server/CommonCommands.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/VideoChat/Server/CommonCommands.pas -------------------------------------------------------------------------------- /Demos/VideoChat/Server/VideoChatServer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/VideoChat/Server/VideoChatServer.dpr -------------------------------------------------------------------------------- /Demos/VideoChat/Server/VideoChatServer.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/VideoChat/Server/VideoChatServer.dproj -------------------------------------------------------------------------------- /Demos/VideoChat/Server/VideoChatServer.dproj.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/VideoChat/Server/VideoChatServer.dproj.local -------------------------------------------------------------------------------- /Demos/VideoChat/Server/VideoChatServer.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/VideoChat/Server/VideoChatServer.dsk -------------------------------------------------------------------------------- /Demos/VideoChat/Server/VideoChatServer.identcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/VideoChat/Server/VideoChatServer.identcache -------------------------------------------------------------------------------- /Demos/VideoChat/Server/VideoChatServer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/VideoChat/Server/VideoChatServer.res -------------------------------------------------------------------------------- /Demos/VideoChat/Server/ufrmMain.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/VideoChat/Server/ufrmMain.fmx -------------------------------------------------------------------------------- /Demos/VideoChat/Server/ufrmMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Demos/VideoChat/Server/ufrmMain.pas -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/LICENSE -------------------------------------------------------------------------------- /NetCom7.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/NetCom7.dpk -------------------------------------------------------------------------------- /NetCom7.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/NetCom7.dproj -------------------------------------------------------------------------------- /NetCom7.dproj.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/NetCom7.dproj.local -------------------------------------------------------------------------------- /NetCom7.dres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/NetCom7.dres -------------------------------------------------------------------------------- /NetCom7.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/NetCom7.dsk -------------------------------------------------------------------------------- /NetCom7.identcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/NetCom7.identcache -------------------------------------------------------------------------------- /NetCom7.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/NetCom7.res -------------------------------------------------------------------------------- /NetCom7.skincfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/NetCom7.skincfg -------------------------------------------------------------------------------- /NetCom7.stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/NetCom7.stat -------------------------------------------------------------------------------- /NetCom7Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/NetCom7Resource.rc -------------------------------------------------------------------------------- /PaletteIcons/TncIcon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/PaletteIcons/TncIcon.bmp -------------------------------------------------------------------------------- /PaletteIcons/TncIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/PaletteIcons/TncIcon.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/README.md -------------------------------------------------------------------------------- /Source/Encryption/ncEncBlockciphers.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/Encryption/ncEncBlockciphers.pas -------------------------------------------------------------------------------- /Source/Encryption/ncEncBlowfish.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/Encryption/ncEncBlowfish.pas -------------------------------------------------------------------------------- /Source/Encryption/ncEncCast128.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/Encryption/ncEncCast128.pas -------------------------------------------------------------------------------- /Source/Encryption/ncEncCast256.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/Encryption/ncEncCast256.pas -------------------------------------------------------------------------------- /Source/Encryption/ncEncCrypt2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/Encryption/ncEncCrypt2.pas -------------------------------------------------------------------------------- /Source/Encryption/ncEncDes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/Encryption/ncEncDes.pas -------------------------------------------------------------------------------- /Source/Encryption/ncEncHaval.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/Encryption/ncEncHaval.pas -------------------------------------------------------------------------------- /Source/Encryption/ncEncIce.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/Encryption/ncEncIce.pas -------------------------------------------------------------------------------- /Source/Encryption/ncEncIdea.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/Encryption/ncEncIdea.pas -------------------------------------------------------------------------------- /Source/Encryption/ncEncMars.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/Encryption/ncEncMars.pas -------------------------------------------------------------------------------- /Source/Encryption/ncEncMd4.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/Encryption/ncEncMd4.pas -------------------------------------------------------------------------------- /Source/Encryption/ncEncMd5.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/Encryption/ncEncMd5.pas -------------------------------------------------------------------------------- /Source/Encryption/ncEncMisty1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/Encryption/ncEncMisty1.pas -------------------------------------------------------------------------------- /Source/Encryption/ncEncRc2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/Encryption/ncEncRc2.pas -------------------------------------------------------------------------------- /Source/Encryption/ncEncRc4.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/Encryption/ncEncRc4.pas -------------------------------------------------------------------------------- /Source/Encryption/ncEncRc5.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/Encryption/ncEncRc5.pas -------------------------------------------------------------------------------- /Source/Encryption/ncEncRc6.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/Encryption/ncEncRc6.pas -------------------------------------------------------------------------------- /Source/Encryption/ncEncRijndael.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/Encryption/ncEncRijndael.pas -------------------------------------------------------------------------------- /Source/Encryption/ncEncRipemd128.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/Encryption/ncEncRipemd128.pas -------------------------------------------------------------------------------- /Source/Encryption/ncEncRipemd160.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/Encryption/ncEncRipemd160.pas -------------------------------------------------------------------------------- /Source/Encryption/ncEncSerpent.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/Encryption/ncEncSerpent.pas -------------------------------------------------------------------------------- /Source/Encryption/ncEncSha1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/Encryption/ncEncSha1.pas -------------------------------------------------------------------------------- /Source/Encryption/ncEncSha256.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/Encryption/ncEncSha256.pas -------------------------------------------------------------------------------- /Source/Encryption/ncEncSha512.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/Encryption/ncEncSha512.pas -------------------------------------------------------------------------------- /Source/Encryption/ncEncTea.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/Encryption/ncEncTea.pas -------------------------------------------------------------------------------- /Source/Encryption/ncEncTiger.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/Encryption/ncEncTiger.pas -------------------------------------------------------------------------------- /Source/Encryption/ncEncTwofish.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/Encryption/ncEncTwofish.pas -------------------------------------------------------------------------------- /Source/NetComRegister.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/NetComRegister.dcr -------------------------------------------------------------------------------- /Source/NetComRegister.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/NetComRegister.pas -------------------------------------------------------------------------------- /Source/ncCommandHandlers.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/ncCommandHandlers.pas -------------------------------------------------------------------------------- /Source/ncCommandPacking.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/ncCommandPacking.pas -------------------------------------------------------------------------------- /Source/ncCompression.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/ncCompression.pas -------------------------------------------------------------------------------- /Source/ncDBCnt.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/ncDBCnt.pas -------------------------------------------------------------------------------- /Source/ncDBCommands.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/ncDBCommands.pas -------------------------------------------------------------------------------- /Source/ncDBSrv.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/ncDBSrv.pas -------------------------------------------------------------------------------- /Source/ncEncryption.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/ncEncryption.pas -------------------------------------------------------------------------------- /Source/ncLines.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/ncLines.pas -------------------------------------------------------------------------------- /Source/ncPendingCommandsList.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/ncPendingCommandsList.pas -------------------------------------------------------------------------------- /Source/ncSerializeADO.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/ncSerializeADO.pas -------------------------------------------------------------------------------- /Source/ncSerializeValue.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/ncSerializeValue.pas -------------------------------------------------------------------------------- /Source/ncSocketList.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/ncSocketList.pas -------------------------------------------------------------------------------- /Source/ncSockets.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/ncSockets.pas -------------------------------------------------------------------------------- /Source/ncSources.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/ncSources.pas -------------------------------------------------------------------------------- /Source/ncThreads.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiBuilder/NetCom7/HEAD/Source/ncThreads.pas --------------------------------------------------------------------------------