~singpolyma/biboumi

a992e281c4a8eb0542abf8475fcd62f297527447 — Florent Le Coz 10 years ago 0bb7ee0
Connect to localhost instead of the served hostname

Because the XMPP component connection is only available locally, the XMPP
servers proably only listen on 127.0.0.1 instead of 0.0.0.0.
1 files changed, 2 insertions(+), 2 deletions(-)

M src/xmpp/xmpp_component.cpp
M src/xmpp/xmpp_component.cpp => src/xmpp/xmpp_component.cpp +2 -2
@@ 44,7 44,7 @@ XmppComponent::~XmppComponent()

void XmppComponent::start()
{
  this->connect(this->served_hostname, "5347");
  this->connect("127.0.0.1", "5347");
}

void XmppComponent::send_stanza(const Stanza& stanza)


@@ 60,7 60,7 @@ void XmppComponent::on_connected()
  XmlNode node("stream:stream", nullptr);
  node["xmlns"] = COMPONENT_NS;
  node["xmlns:stream"] = STREAM_NS;
  node["to"] = "irc.abricot";
  node["to"] = this->served_hostname;
  this->send_stanza(node);
}