Methods Summary |
---|
protected int | getAlternativeSequence()
return( alt_sequence );
|
protected byte[] | getBuffer()
return( buffer );
|
protected byte | getCommand()
return( command );
|
protected UDPConnection | getConnection()
return( connection );
|
protected short | getResendCount()
return( resend_count );
|
protected long | getSendTickCount()
return( send_tick_count );
|
protected int | getSentCount()
return( sent_count );
|
protected int | getSequence()
return( sequence );
|
protected java.lang.String | getString()
return( "seq=" + sequence + ",type=" + command + ",retrans=" + auto_retransmit + ",sent=" + sent_count +",len=" + buffer.length );
|
protected long | getUnAckInSequenceCount()
return( unack_in_sequence_count );
|
protected boolean | hasBeenReceived()
return( received );
|
protected boolean | isAutoRetransmit()
return( auto_retransmit );
|
protected void | resent()
resend_count++ ;
|
protected short | sent(long tick_count)
sent_count++;
send_tick_count = tick_count;
return( sent_count );
|
protected void | setAutoRetransmit(boolean b)
auto_retransmit = b;
|
protected void | setHasBeenReceived()
received = true;
|