The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Net::Jabber::Query::Fneg - Jabber IQ Feature Negotiotation Module

SYNOPSIS

  Net::Jabber::Query::Fneg is a companion to the Net::Jabber::Query module.
  It provides the user a simple interface to set and retrieve all parts
  of a Jabber Feature Negotiotation query.

DESCRIPTION

  To initialize the IQ with a Jabber <iq/> and then access the fneg
  query you must pass it the XML::Parser Tree array from the 
  Net::Jabber::Client module.  In the callback function for the iq:

    use Net::Jabber;

    sub iqCB {
      my $iq = new Net::Jabber::IQ(@_);
      my $fneg = $iq->GetQuery();
      .
      .
      .
    }

  You now have access to all of the retrieval functions available.

  To create a new IQ fneg to send to the server:

    use Net::Jabber;

    $client = new Net::Jabber::Client();
    ...

    $iq = new Net::Jabber::IQ();
    $fneg = $iq->NewQuery("jabber:iq:fneg");
    ...

    $client->Send($iq);

  Using $fneg you can call the creation functions below to populate the 
  tag before sending it.

  For more information about the array format being passed to the CallBack
  please read the Net::Jabber::Client documentation.

Retrieval functions @namespaces = $auth->GetNS();

Creation functions $auth->AddNS("bar:foo:namespace");

METHODS

Retrieval functions GetNS() - returns an array of namespaces that the <query/> contains.

Creation functions AddNS(string) - adds the single namespace to the list in the <query/>.

AUTHOR

By Ryan Eatmon in May of 2000 for http://jabber.org..

COPYRIGHT

This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.