HomeSort by relevance Sort by last modified time
    Searched defs:Jid (Results 1 - 3 of 3) sorted by null

  /external/chromium/third_party/libjingle/source/talk/xmpp/
jid.h 36 //! The Jid class encapsulates and provides parsing help for Jids
37 //! A Jid consists of three parts. The node, the domain and the resource.
41 //! The node and resource are both optional. A valid jid is defined to have
42 //! a domain. A bare jid is defined to not have a resource and a full jid
44 class Jid {
46 explicit Jid();
47 explicit Jid(const std::string & jid_string);
48 explicit Jid(const std::string & node_name,
51 explicit Jid(bool special, const std::string & special_string)
    [all...]
jid.cc 28 #include "talk/xmpp/jid.h"
41 Jid::Jid() : data_(NULL) {
44 Jid::Jid(bool is_special, const std::string & special) {
48 Jid::Jid(const std::string & jid_string) {
92 // If the domain is empty we have a non-valid jid and we should empty
117 Jid::Jid(const std::string & node_name
    [all...]
  /external/chromium/net/tools/testserver/
xmppserver.py 156 class Jid(object):
157 """Simple struct for an XMPP jid (essentially an e-mail address with
173 return Jid(self.username, self.domain)
233 # The id and jid attributes are filled in later.
237 ' <jid/>'
332 self._jid = Jid(self._username, self._domain, full_resource)
334 response.getElementsByTagName('jid')[0].appendChild(jid_text)
430 def HandshakeDone(self, jid):
431 self._jid = jid

Completed in 265 milliseconds