=head1 NAME Linux::NBD - interface to the linux network block device. =head1 SYNOPSIS # Kernel 2.4+ is required use Linux::NBD; =head1 DESCRIPTION See L and L, or no, better idea: use the source :) NOTICE: Only the Linux 2.4 and newer nbd device is supported by this module. For older kernels you are on your own. =head1 FUNCTIONS =over 4 =cut package Linux::NBD; BEGIN { $VERSION = '1.0'; require XSLoader; XSLoader::load Linux::NBD, $VERSION; } use Socket; =item ($a, $b) = tcp_socketpair; Creates a pair of interconnected tcp sockets, which is extremely ugly, so be happy that this function exists. =cut sub tcp_socketpair { open my $fh, " http://home.schmorp.de/ =cut