()
| 312 | } |
| 313 | |
| 314 | void initIBB() { |
| 315 | method = TransferDispatcher.NS_IBB; |
| 316 | JabberDataBlock iq = new Iq(jid.toString(), Iq.TYPE_SET, sid); |
| 317 | JabberDataBlock open = iq.addChildNs("open", TransferDispatcher.NS_IBB); |
| 318 | open.setAttribute("sid", sid); |
| 319 | open.setAttribute("block-size", "2048"); |
| 320 | open.setAttribute("stanza", "message"); |
| 321 | TransferDispatcher.getInstance().send(iq, false); |
| 322 | } |
| 323 | protected SOCKS5Stream proxystream; |
| 324 | |
| 325 | void initProxy() { |
no test coverage detected