131132133134135136137138139140141
long timeout = getEstablishConnectionTimeout(); do { TransportChannel tc = getEstablishedChannel(timeout); if (tc != null) { try { tc.asyncSend(packet); break; } catch (TimeoutExpiredException e) { throw e; }
124125126127128129130131132133134