mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
New addr param to checkAndDeliver so address can be passed back to
comms.
This commit is contained in:
parent
3866d898f4
commit
07f21767fc
2 changed files with 2 additions and 2 deletions
|
@ -371,7 +371,7 @@ checkHandleNetEvents( PalmAppGlobals* globals )
|
|||
|
||||
XWStreamCtxt* instream = packetToStream( globals );
|
||||
if ( !!instream ) {
|
||||
checkAndDeliver( globals, instream );
|
||||
checkAndDeliver( globals, NULL, instream );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -525,7 +525,7 @@ palm_ir_receiveMove( PalmAppGlobals* globals, ExgSocketPtr socket )
|
|||
(void)ExgDisconnect( socket, err );
|
||||
|
||||
if ( nBytesReceived == 0 ) { /* successful loop exit */
|
||||
checkAndDeliver( globals, instream );
|
||||
checkAndDeliver( globals, NULL, instream );
|
||||
}
|
||||
}
|
||||
} /* palm_ir_receiveMove */
|
||||
|
|
Loading…
Reference in a new issue