e.consume();
} else {
InBandByteStream.Open open = iq.getExtension(InBandByteStream.Open.class);
if (open != null) {
if (open.getBlockSize() > 65535) {
xmppSession.send(iq.createError(new StanzaError(StanzaError.Type.MODIFY, new ResourceConstraint())));
} else {
// Somebody wants to create a IBB session with me.
// Notify the listeners.
notifyByteStreamEvent(new IbbEvent(InBandByteStreamManager.this, open.getSessionId(), xmppSession, iq, open.getBlockSize()));
}