Browse Source

exe files von git entfernt

Kolja Strohm 4 years ago
parent
commit
a2a1e4ee61

+ 4 - 1
.gitignore

@@ -258,4 +258,7 @@ paket-files/
 
 # Python Tools for Visual Studio (PTVS)
 __pycache__/
-*.pyc
+*.pyc
+
+*.exe
+*.dmp

BIN
Fertig/x32/smp.exe


BIN
Fertig/x64/error_core_memory_dump.dmp


BIN
Fertig/x64/smp.exe


BIN
Fertig/x64/smph.exe


+ 2 - 0
SMP/Netzwerk/LTSKlient.cpp

@@ -1,4 +1,5 @@
 #include "LTSKlient.h"
+#include <iostream>
 
 // Inhalt der LTSKlient Klasse aus LTSKlient.h
 // Konstruktor
@@ -41,6 +42,7 @@ bool LTSKlient::verbinden()
 	if( verbunden )
 		return 1;
 	lock();
+    std::cout << "connect to " << ip->getText() << ":" << port << "\n";
 	bool b = k->verbinde( port, ip->getText() );
 	if( !b )
 	{