GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Net::Async::XMPP::Protocol(3) User Contributed Perl Documentation Net::Async::XMPP::Protocol(3)

Net::Async::XMPP::Protocol - common protocol support for Net::Async::XMPP

Version 0.003

Accessor for the underyling XMPP Protocol::XMPP::Stream object.

Configure our handlers.

Upgrade the underlying stream to use TLS.

Proxy incoming data through to the underlying Protocol::XMPP::Stream.

 $protocol->connect(
   on_connected => sub { warn "connected!" },
   host         => 'talk.google.com',
 )

Establish a connection to the XMPP server.

All available arguments are listed above. "on_connected" gets passed the underlying protocol object.

Performs a SRV lookup for the given domain and type.

This should resolve to a list of (host, port) arrayrefs, in decreasing order of preference.

 $proto->srv_lookup('example.com', 'xmpp-client')->on_done(sub {
  printf "Service available at %s:%d\n", @$_ for @_;
 });

Tom Molesworth <cpan@entitymodel.com>

Copyright Tom Molesworth 2010-2014. Licensed under the same terms as Perl itself.
2014-08-04 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.