cmdListList = cmdListList.cdr();
cmdStr = cmdList.first().toStringSimple().toUpperCase();
if( cmdStr.equals( "SEND" )) {
bt.cmd[ i ] = BT_SEND;
id = cmdList.second().toJava();
o = jatha.getObject( id);
if( o == null ) {
throw new IOException( getResourceString( "errLispWrongObjType" ) + " : " + id );
}
if( !(o instanceof DatagramChannel) ) {