New addr param to checkAndDeliver so address can be passed back to

comms.
This commit is contained in:
ehouse 2006-09-14 01:41:37 +00:00
parent 3866d898f4
commit 07f21767fc
2 changed files with 2 additions and 2 deletions

View file

@ -371,7 +371,7 @@ checkHandleNetEvents( PalmAppGlobals* globals )
XWStreamCtxt* instream = packetToStream( globals );
if ( !!instream ) {
checkAndDeliver( globals, instream );
checkAndDeliver( globals, NULL, instream );
}
}
}

View file

@ -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 */