summaryrefslogtreecommitdiff
path: root/scripts/xmppdaemon.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-09-01 21:26:04 -0400
committerEvan Prodromou <evan@prodromou.name>2008-09-01 21:26:04 -0400
commitc6c3cd40f6304b49f5d4841e9999641a183e987b (patch)
tree677e174fae15399a510ab7ed65bfd4148b8f0f11 /scripts/xmppdaemon.php
parentc31afa795f7077a8d007e0a426cd0910980e1ee5 (diff)
separate out presence from connection, send different presence types from queuehandlers
darcs-hash:20080902012604-84dde-073a583da9b09c80e5e9a47a5eddd144fad8e87a.gz
Diffstat (limited to 'scripts/xmppdaemon.php')
-rwxr-xr-xscripts/xmppdaemon.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/xmppdaemon.php b/scripts/xmppdaemon.php
index 37d638b02..03cadee7c 100755
--- a/scripts/xmppdaemon.php
+++ b/scripts/xmppdaemon.php
@@ -61,12 +61,14 @@ class XMPPDaemon {
$this->log(LOG_INFO, "Connecting to $connect_to on port $this->port");
- $this->conn = jabber_connect($this->resource, "Send me a message to post a notice", 100);
+ $this->conn = jabber_connect($this->resource);
if (!$this->conn) {
return false;
}
+ jabber_send_presence("Send me a message to post a notice", 'available',
+ NULL, 'available', 100);
return !$this->conn->isDisconnected();
}