X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=Fuse.pm;h=060ab99af37f58a0df6529f05bf7dad0f502e6a5;hb=176ffc0689c521e302965597be47d1bd701d9180;hp=1d830398c839cbc9dccc3fdeec968163c39bb9be;hpb=68b94a8b8eda99bd54082864cd396e748c20eb77;p=perl-fuse.git diff --git a/Fuse.pm b/Fuse.pm index 1d83039..060ab99 100755 --- a/Fuse.pm +++ b/Fuse.pm @@ -10,7 +10,6 @@ use Config; require Exporter; require DynaLoader; use AutoLoader; -use Data::Dumper; our @ISA = qw(Exporter DynaLoader); # Items to export into callers namespace by default. Note: do not export @@ -28,7 +27,7 @@ our %EXPORT_TAGS = ( our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } ); our @EXPORT = (); -our $VERSION = '0.11'; +our $VERSION = '0.12'; sub AUTOLOAD { # This AUTOLOAD is used to 'autoload' constants from the constant() @@ -62,16 +61,6 @@ sub AUTOLOAD { goto &$AUTOLOAD; } -sub XATTR_CREATE { - # See . - return 1; -} - -sub XATTR_REPLACE { - # See . - return 2; -} - bootstrap Fuse $VERSION; sub main { @@ -337,11 +326,6 @@ This is used to obtain directory listings. It's opendir(), readdir(), filldir() example rv: return ('.', 'a', 'b', 0); -=head3 readdir - -Arguments: Directory name, offset -Returns: filename, offset to the next dirent, numeric errno 0 or -ENOENT() - =head3 mknod Arguments: Filename, numeric modes, numeric device