Home | History | Annotate | Download | only in smackx

Lines Matching refs:disco

105      * in a disco request. The name could be any value you need to identity this client.
108 * in a disco request.
121 * in a disco request. The name could be any value you need to identity this client.
124 * in a disco request.
134 * disco request. The valid types are defined by the category client. Follow this link to learn
135 * the possible types: <a href="http://xmpp.org/registrar/disco-categories.html#client">Jabber::Registrar</a>.
138 * disco request.
151 * disco request. The valid types are defined by the category client. Follow this link to learn
152 * the possible types: <a href="http://xmpp.org/registrar/disco-categories.html#client">Jabber::Registrar</a>.
155 * disco request.
212 // Listen for disco#items requests and answer with an empty result
246 // Listen for disco#info requests and answer the client's supported features
267 // Disco#info was sent to a node. Check if we have information of the
332 * (ie items) related to a given node. Every time this client receives a disco request
502 // avoided a disco request, hurray!
538 DiscoverInfo disco = new DiscoverInfo();
539 disco.setType(IQ.Type.GET);
540 disco.setTo(entityID);
541 disco.setNode(node);
545 connection.createPacketCollector(new PacketIDFilter(disco.getPacketID()));
547 connection.sendPacket(disco);
585 DiscoverItems disco = new DiscoverItems();
586 disco.setType(IQ.Type.GET);
587 disco.setTo(entityID);
588 disco.setNode(node);
592 connection.createPacketCollector(new PacketIDFilter(disco.getPacketID()));
594 connection.sendPacket(disco);
612 * be returned by the server whenever the server receives a disco request targeted to the bare
627 * be returned by the server whenever the server receives a disco request targeted to the bare
634 return info.containsFeature("http://jabber.org/protocol/disco#publish");