class that will implement network for comms

This commit is contained in:
eehouse 2010-01-30 14:35:33 +00:00
parent 4b9fa4d42a
commit 5b1a0f167e

View file

@ -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 )
{
}
}