/usr/share/perl5/HTTP/Body/OctetStream.pm is in libhttp-body-perl 1.11-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | package HTTP::Body::OctetStream;
BEGIN {
$HTTP::Body::OctetStream::VERSION = '1.11';
}
use strict;
use base 'HTTP::Body';
use bytes;
use File::Temp 0.14;
=head1 NAME
HTTP::Body::OctetStream - HTTP Body OctetStream Parser
=head1 SYNOPSIS
use HTTP::Body::OctetStream;
=head1 DESCRIPTION
HTTP Body OctetStream Parser.
=head1 METHODS
=over 4
=item spin
=cut
sub spin {
my $self = shift;
unless ( $self->body ) {
$self->body( File::Temp->new( DIR => $self->tmpdir ) );
}
if ( my $length = length( $self->{buffer} ) ) {
$self->body->write( substr( $self->{buffer}, 0, $length, '' ), $length );
}
if ( $self->length == $self->content_length ) {
seek( $self->body, 0, 0 );
$self->state('done');
}
}
=back
=head1 AUTHOR
Christian Hansen, C<ch@ngmedia.com>
=head1 LICENSE
This library is free software . You can redistribute it and/or modify
it under the same terms as perl itself.
=cut
1;
|