Title: im
Description:
Copyright: Copyright (c) 2001
Company:
738739740741742743744745746747748
{ if (packet instanceof StreamError) streamError((StreamError)packet); else if(authenticationId.equals(packet.getID())) authenticated((InfoQuery)packet); else if(packet instanceof InfoQuery) { IQExtension extension = packet.getIQExtension(); if(extension instanceof IQAuth) { if(((InfoQuery)packet).getType().equals("error")) { sendLoginError(packet.getErrorDescription());
8788899091929394959697
{ public void iqResult(InfoQuery iq) { if(iq.getType().equals("result")) { IQExtension e = iq.getIQExtension(); if(e instanceof Socks5Extension) { JID streamHostJID = ((Socks5Extension)e).getStreamHostUsed(); if(streamHostJID!=null) {
7172737475767778798081
{ backend.send(new InfoQuery("get", new VCard()),new IQResultListener() { public void iqResult(InfoQuery iq) { IQExtension iqe = iq.getIQExtension(); if(iqe instanceof VCard) { ((VCard)iqe).execute(iq, backend); } else if (iq.getType().equals("result"))
351352353354355356357358359360361
respond((ChallengePacket)packet); } else if (packet instanceof InfoQuery) { InfoQuery infoquery = (InfoQuery)packet; IQExtension iq = infoquery.getIQExtension(); if(iq instanceof IQBind) { if (infoquery.getType().equals("result")) { jid = ((IQBind)iq).getJID();