|
@@ -55,12 +55,12 @@ bool SpielServerKlient::downloadSpielHistorie( short port, char *ip, int spiel,
|
|
|
return 0;
|
|
|
}
|
|
|
k->sendeEncrypted( "\xB", 1 );
|
|
|
- char ret = 0;
|
|
|
- k->getNachrichtEncrypted( &ret, 1 );
|
|
|
+ unsigned char ret = 0;
|
|
|
+ k->getNachrichtEncrypted( (char*)&ret, 1 );
|
|
|
if( ret == 1 )
|
|
|
{
|
|
|
k->sendeEncrypted( (char*)&spiel, 4 );
|
|
|
- k->getNachrichtEncrypted( &ret, 1 );
|
|
|
+ k->getNachrichtEncrypted( (char*)&ret, 1 );
|
|
|
if( ret == 1 )
|
|
|
{
|
|
|
Text *pfad = new Text( gpf );
|
|
@@ -69,7 +69,7 @@ bool SpielServerKlient::downloadSpielHistorie( short port, char *ip, int spiel,
|
|
|
pfad->append( "/" );
|
|
|
pfad->append( spiel );
|
|
|
pfad->append( "/" );
|
|
|
- k->getNachrichtEncrypted( &ret, 1 );
|
|
|
+ k->getNachrichtEncrypted( (char*)&ret, 1 );
|
|
|
while( ret )
|
|
|
{
|
|
|
char *pf = new char[ ret + 1 ];
|
|
@@ -93,7 +93,7 @@ bool SpielServerKlient::downloadSpielHistorie( short port, char *ip, int spiel,
|
|
|
d->close();
|
|
|
d->release();
|
|
|
delete[] pf;
|
|
|
- k->getNachrichtEncrypted( &ret, 1 );
|
|
|
+ k->getNachrichtEncrypted( (char*)&ret, 1 );
|
|
|
}
|
|
|
pfad->release();
|
|
|
}
|
|
@@ -101,7 +101,7 @@ bool SpielServerKlient::downloadSpielHistorie( short port, char *ip, int spiel,
|
|
|
if( ret == 3 )
|
|
|
{
|
|
|
*fehler = "Fehler, Spielserver rückgabe: ";
|
|
|
- k->getNachrichtEncrypted( &ret, 1 );
|
|
|
+ k->getNachrichtEncrypted( (char*)&ret, 1 );
|
|
|
char *err = new char[ ret + 1 ];
|
|
|
err[ (int)ret ] = 0;
|
|
|
k->getNachrichtEncrypted( err, ret );
|