ch.socket().setReceiveBufferSize(receiveBufferSize);
// Re-retrieve the effective receive buffer size.
receiveBufferSize = ch.socket().getReceiveBufferSize();
DatagramSessionImpl.this.readBufferSize = receiveBufferSize;
} catch (SocketException e) {
throw new RuntimeIOException(e);
}
}
}