GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Sys::Sendfile::FreeBSD(3) User Contributed Perl Documentation Sys::Sendfile::FreeBSD(3)

Sys::Sendfile::FreeBSD - Wrapper for the FreeBSD sendfile(2) function.

use Sys::Sendfile::FreeBSD qw(sendfile);

open(F, "file.txt"); my $socket = IO::Socket::INET->new(PeerAddr => "127.0.0.1:1234"); my $offset = 0; my $bytes_sent = 0; my $result = sendfile(fileno(F), fileno($socket), $offset, (stat("file.txt))[7], $bytes_sent); close(F); close($sock);

Uses the FreeBSD sendfile(2) function to send the contents of an open file handle directly to an open socket. See the sendfile(2) manual page for more details.

Note that this module does not currently support the header/trailer functionality of the sendfile(2) function, nor does it allow the flags argument to be set.

Mark Imbriaco <mark.imbriaco@pobox.com>

This module is Copyright (c) 2006 Mark Imbriaco.

All rights reserved.

You may distribute under the terms of either the GNU General Public License or the Artistic License, as specified in the Perl README file. If you need more liberal licensing terms, please contact the maintainer.

This is free software. IT COMES WITHOUT WARRANTY OF ANY KIND.

Sys::Syscall by Brad Fitzpatrick.
2006-09-04 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.