Why not adopt me?
NAME
Net::OBEX::Packet::Request::Disconnect - create OBEX protocol Disconnect request packets.
SYNOPSIS
use Net::OBEX::Packet::Request::Disconnect;
my $disconn = Net::OBEX::Packet::Request::Disconnect->new(
headers => [ $bunch, $of, $raw, $headers ],
);
my $disconnect_packet = $disconn->make;
$disconn->headers([]); # reset headers.
my $disconnect_packet2 = $disconn->make;
DESCRIPTION
WARNING!!! This module is in an early alpha stage. It is recommended that you use it only for testing.
The module provides means to create OBEX protocol Disconnect (0x81) packets. It is used internally by Net::OBEX::Packet::Request module and you probably want to use that instead.
CONSTRUCTOR
new
$pack = Net::OBEX::Packet::Request::Disconnect->new;
$pack2 = Net::OBEX::Packet::Request::Diconnect->new(
headers => [ $some, $raw, $headers ]
);
Returns a Net::OBEX::Packet::Request::Disconnect object, takes one optional headers argument value of which is an arrayref of raw OBEX packet headers. See Net::OBEX::Packet::Headers if you want to create those.
METHODS
make
my $raw_packet = $pack->make;
Takes no arguments, returns a raw OBEX packet ready to go down the wire.
raw
my $raw_packet = $pack->raw;
Takes no arguments, must be called after make() call, returns the raw OBEX packet which was made with last make() (i.e. the last return value of make()).
headers
my $headers_ref = $pack->headers;
$pack->headers( [ $bunch, $of, $raw, $headers ] );
Returns an arrayref of currently set OBEX packet headers. Takes one optional argument which is an arrayref, elements of which are raw OBEX packet headers. See Net::OBEX::Packet::Headers if you want to create those. If you want a packet with no headers use an empty arrayref as an argument.
AUTHOR
Zoffix Znet, <zoffix at cpan.org> (http://zoffix.com, http://haslayout.net)
BUGS
Please report any bugs or feature requests to bug-net-obex-packet-request at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Net-OBEX-Packet-Request. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Net::OBEX::Packet::Request
You can also look for information at:
RT: CPAN's request tracker
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Net-OBEX-Packet-Request
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
COPYRIGHT & LICENSE
Copyright 2008 Zoffix Znet, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.