mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-29 08:34:37 +01:00
class that will implement network for comms
This commit is contained in:
parent
4b9fa4d42a
commit
5b1a0f167e
1 changed files with 28 additions and 0 deletions
|
@ -0,0 +1,28 @@
|
|||
/* -*- compile-command: "cd ../../../../../; ant reinstall"; -*- */
|
||||
|
||||
|
||||
package org.eehouse.android.xw4;
|
||||
|
||||
import org.eehouse.android.xw4.jni.*;
|
||||
|
||||
public class CommsTransport implements TransportProcs {
|
||||
|
||||
public int transportSend( byte[] buf, final CommsAddrRec addr )
|
||||
{
|
||||
Utils.logf( "CommsTransport::transportSend() called!!!" );
|
||||
return -1;
|
||||
}
|
||||
|
||||
public void relayStatus( int newState )
|
||||
{
|
||||
}
|
||||
|
||||
public void relayConnd( boolean allHere, int nMissing )
|
||||
{
|
||||
}
|
||||
|
||||
public void relayErrorProc( XWRELAY_ERROR relayErr )
|
||||
{
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Reference in a new issue