Jabberd 2.2.5 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Jabberd 2.2.5 (Default branch)
# 1  
Old 01-19-2009
Jabberd 2.2.5 (Default branch)

jabberd is a Jabber/XMPP instant messaging server.It implements XMPP-Core (RFC3920), XMPP-IM(RFC3921), and a range of protocol extensions:XEP-0012, XEP-0016, XEP-0030, XEP-0049, XEP-0054,XEP-0077, XEP-0079, XEP-0092, XEP-0114, XEP-0138,XEP-0153, XEP-0157, XEP-0160, XEP-0191, XEP-0192,XEP-0193, XEP-0198, XEP-0199, XEP-0202, XEP-0203.License: GNU General Public License (GPL)Changes:
Many bugfixes were made for functional issues,stability, and documentation.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
AnyEvent::XMPP::Ext::Pubsub(3pm)			User Contributed Perl Documentation			  AnyEvent::XMPP::Ext::Pubsub(3pm)

NAME
AnyEvent::XMPP::Ext::Pubsub - Implements XEP-0060: Publish-Subscribe SYNOPSIS
my $con = AnyEvent::XMPP::Connection->new (...); $con->add_extension (my $ps = AnyEvent::XMPP::Ext::Pubsub->new); ... DESCRIPTION
This module implements all tasks of handling the publish subscribe mechanism. (partially implemented) METHODS
new This is the constructor for a pubsub object. It takes no further arguments. delete_node($con, $uri, $cb) $con is the connection already established, $uri is the name of the node to be created $cb is the callback Try to remove a node. create_node ($con, $uri, $cb) $con is the connection already established, $uri is the name of the node to be created $cb is the callback Try to create a node. subscribe_node($con, $uri, $cb) $con is the connection already established, $uri is the name of the node to be created $cb is the callback Try to retrieve items. unsubscribe_node($con, $uri, $bc)> $con is the connection already established, $uri is the name of the node to be created $cb is the callback Try to unsubscribe from a node. publish_item($con, $uri, $create_cb, $cb) $con is the connection already established, $uri is the name of the node to be created $create_cb is the callback $cb is the callback Try to publish an item. retrive_items($con, $uri, $cb) $con is the connection already established, $uri is the name of the node to be created $cb is the callback Try to retrieve items. retrive_item($con, $uri, $id, $cb) $con is the connection already established, $uri is the name of the node to be created $id is the id of the entry to be retrieved $cb is the cb Try to retrieve item. AUTHOR
Robin Redeker, "<elmex at ta-sa.org>", JID: "<elmex at jabber.org>" CONTRIBUTORS
Chris Miceli - additional work on the pubsub extension COPYRIGHT &; LICENSE Copyright 2007, 2008 Robin Redeker, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-01-23 AnyEvent::XMPP::Ext::Pubsub(3pm)