| 1 |
elmex |
1.1 |
package Net::XMPP2::Ext; |
| 2 |
|
|
use warnings; |
| 3 |
|
|
use strict; |
| 4 |
|
|
|
| 5 |
|
|
=head1 NAME |
| 6 |
|
|
|
| 7 |
|
|
Net::XMPP2::Ext - The set of extensions for Net::XMPP2 |
| 8 |
|
|
|
| 9 |
|
|
=head1 DESCRIPTION |
| 10 |
|
|
|
| 11 |
|
|
This module only has documentation about the supported extensions. |
| 12 |
|
|
|
| 13 |
|
|
=head1 Supportet extensions |
| 14 |
|
|
|
| 15 |
|
|
This is the list of supported XMPP extensions: |
| 16 |
|
|
|
| 17 |
|
|
=over 4 |
| 18 |
|
|
|
| 19 |
|
|
=item XEP-0086 - Error Condition Mappings |
| 20 |
|
|
|
| 21 |
|
|
"A mapping to enable legacy entities to correctly handle errors from XMPP-aware entities." |
| 22 |
|
|
|
| 23 |
|
|
This extension will enable sending of the old error codes when generating a stanza |
| 24 |
|
|
error with for example: L<Net::XMPP2::Writer::write_error_tag> |
| 25 |
|
|
|
| 26 |
|
|
=item XEP-0030 - Service Discovery |
| 27 |
|
|
|
| 28 |
|
|
This extension allows you to send service discovery requests and |
| 29 |
|
|
define a set of discoverable information. See also L<Net::XMPP2::Ext::Disco>. |
| 30 |
|
|
|
| 31 |
|
|
=item XEP-0077 - In-Band Registration |
| 32 |
|
|
|
| 33 |
|
|
This extension lets you register new accounts "in-band". |
| 34 |
|
|
To use this look at the description of the C<register> option to the C<new> |
| 35 |
|
|
method of L<Net::XMPP2::Connection>. |
| 36 |
|
|
|
| 37 |
|
|
=back |
| 38 |
|
|
|
| 39 |
|
|
=cut |
| 40 |
|
|
|
| 41 |
|
|
=head1 AUTHOR |
| 42 |
|
|
|
| 43 |
|
|
Robin Redeker, C<< <elmex at ta-sa.org> >> |
| 44 |
|
|
|
| 45 |
|
|
=head1 COPYRIGHT & LICENSE |
| 46 |
|
|
|
| 47 |
|
|
Copyright 2007 Robin Redeker, all rights reserved. |
| 48 |
|
|
|
| 49 |
|
|
This program is free software; you can redistribute it and/or modify it |
| 50 |
|
|
under the same terms as Perl itself. |
| 51 |
|
|
|
| 52 |
|
|
=cut |
| 53 |
|
|
|
| 54 |
|
|
1; # End of Net::XMPP2 |