![]() |
![]()
| ![]() |
![]()
NAMENet::SFTP::Buffer - Read/write buffer class SYNOPSISuse Net::SFTP::Buffer; my $buffer = Net::SFTP::Buffer->new; DESCRIPTIONNet::SFTP::Buffer inherits from Net::SSH::Perl::Buffer to provide read/write buffer functionality for SSH. SFTP buffers are exactly the same as SSH buffers, with a couple of additions:
USAGEUsage of Net::SFTP::Buffer objects is exactly the same as usage of Net::SSH::Perl::Buffer objects, with additions of the following methods to support the above data types. $buffer->get_int64Extracts a 64-bit integer from $buffer and returns it as a Math::Pari object. $buffer->put_int64($int)Serializes a 64-bit integer $int into the buffer $buffer; $int can be either a Math::Pari object or a built-in Perl integer, if it is small enough to fit into a Perl int. $buffer->get_attributesUses Net::SFTP::Attributes to extract a list of file attributes from $buffer, and returns a Net::SFTP::Attributes object containing those file attributes. $buffer->put_attributes($attrs)Serializes a Net::SFTP::Attributes object $attrs into the buffer $buffer. AUTHOR & COPYRIGHTSPlease see the Net::SFTP manpage for author, copyright, and license information.
|