connection.sendCell(cell);
}
protected void receiveVersions() throws ConnectionHandshakeException {
final Cell c = expectCell(Cell.VERSIONS);
while(c.cellBytesRemaining() >= 2) {
remoteVersions.add(c.getShort());
}
}
protected void sendNetinfo() throws ConnectionIOException {