~singpolyma/biboumi

f1de6d032091bd141e12e8345969495d6f23c3e6 — Florent Le Coz 9 years ago 1031989
Add Bridge::get_bare_jid
2 files changed, 7 insertions(+), 0 deletions(-)

M src/bridge/bridge.cpp
M src/bridge/bridge.hpp
M src/bridge/bridge.cpp => src/bridge/bridge.cpp +6 -0
@@ 74,6 74,12 @@ const std::string& Bridge::get_jid() const
  return this->user_jid;
}

std::string Bridge::get_bare_jid() const
{
  Jid jid(this->user_jid);
  return jid.local + "@" + jid.domain;
}

Xmpp::body Bridge::make_xmpp_body(const std::string& str)
{
  std::string res;

M src/bridge/bridge.hpp => src/bridge/bridge.hpp +1 -0
@@ 47,6 47,7 @@ public:
   * Return the jid of the XMPP user using this bridge
   */
  const std::string& get_jid() const;
  std::string get_bare_jid() const;

  static Xmpp::body make_xmpp_body(const std::string& str);
  /***