From 3ebc1cae5ec4b1cdf728b809d22e502bd6ea5f46 Mon Sep 17 00:00:00 2001 From: Ben Date: Thu, 6 May 2010 17:33:21 -0400 Subject: [PATCH] thrasherbird.pl: Item disco target config was missing. --- perl/thrasherbird.pl | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/perl/thrasherbird.pl b/perl/thrasherbird.pl index 9c68912..fb1bbfa 100644 --- a/perl/thrasherbird.pl +++ b/perl/thrasherbird.pl @@ -82,6 +82,12 @@ $server_secret = 'secret'; # which means you should set this as the domain name of your server. $component_name_base = 'localhost'; +# Set $server_target_for_service_discovery to a target entity for +# XEP-0030 service discovery if Thrasher should find and use other +# XMPP items like a XEP-0065 file transfer proxy. Otherwise, leave it +# undefined. +my $server_target_for_service_discovery; + ####### ## PLUGINS ####### @@ -123,5 +129,6 @@ require Thrasher; Thrasher::start($backend, $protocol, $server_ip, $server_port, $server_secret, $backend_configuration, $protocol_configuration, $component_name_base, + $server_target_for_service_discovery, $plugins, ); -- 2.11.4.GIT