class Blather::Stanza::Iq::Ibb

# In-Band Bytestreams Stanza

[XEP-0047: In-Band Bytestreams](xmpp.org/extensions/xep-0047.html)

@handler :ibb_open @handler :ibb_data @handler :ibb_close

Constants

NS_IBB

@private

Public Instance Methods

reply() click to toggle source

Overrides the parent method to remove open, close and data nodes

@see Blather::Stanza#reply

Calls superclass method Blather::Stanza#reply
# File lib/blather/stanza/iq/ibb.rb, line 18
def reply
  reply = super
  reply.remove_children :open
  reply.remove_children :close
  reply.remove_children :data
  reply
end