Launcher update to 1.63.5

- async tcp buffer
- two way encryption on connect
- map security fix
- DNS Lookup on connect
- fixed bug in beamng security
This commit is contained in:
Anonymous275
2020-10-16 17:10:12 +03:00
parent ccdbc51b30
commit 7da9f4fcd2
17 changed files with 340 additions and 134 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ void InitLog(){
}
void addToLog(const std::string& Line){
std::ofstream LFS;
LFS.open (Sec("Launcher.log"), std::ios_base::app);
LFS.open(Sec("Launcher.log"), std::ios_base::app);
LFS << Line.c_str();
LFS.close();
}