super( VersionCheckClientUDPCodecs.ACT_VERSION_REQUEST, connection_id );
super( VersionCheckClientUDPCodecs.ACT_VERSION_REQUEST, connection_id, trans_id ); short len = is.readShort(); if ( len <= 0 ){ throw( new IOException( "invalid length" )); } byte[] bytes = new byte[len]; is.read( bytes ); payload = BDecoder.decode( bytes );
return( payload );
return( super.getString());
super.serialise(os); byte[] bytes = BEncoder.encode( payload ); os.writeShort( (short)bytes.length ); os.write( bytes );
payload = _payload;