├── .gitignore ├── LICENSE ├── README.md ├── config.m4 ├── package.xml ├── php_smbclient.h ├── phpunit.xml.dist ├── smb_streams.c ├── smbclient.c ├── smbclient.stub.php ├── smbclient_arginfo.h ├── smbclient_legacy_arginfo.h └── tests ├── ClosedirTest.php ├── CreateTest.php ├── GetxattrTest.php ├── LseekTest.php ├── OpendirTest.php ├── OptionsTest.php ├── ReadTest.php ├── ReaddirTest.php ├── RenameTest.php ├── StateFreeTest.php ├── StateInitTest.php ├── StateNewTest.php ├── StreamsTest.php ├── VersionTest.php ├── VfsTest.php ├── WriteTest.php └── setup-share.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardok/libsmbclient-php/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardok/libsmbclient-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardok/libsmbclient-php/HEAD/README.md -------------------------------------------------------------------------------- /config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardok/libsmbclient-php/HEAD/config.m4 -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardok/libsmbclient-php/HEAD/package.xml -------------------------------------------------------------------------------- /php_smbclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardok/libsmbclient-php/HEAD/php_smbclient.h -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardok/libsmbclient-php/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /smb_streams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardok/libsmbclient-php/HEAD/smb_streams.c -------------------------------------------------------------------------------- /smbclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardok/libsmbclient-php/HEAD/smbclient.c -------------------------------------------------------------------------------- /smbclient.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardok/libsmbclient-php/HEAD/smbclient.stub.php -------------------------------------------------------------------------------- /smbclient_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardok/libsmbclient-php/HEAD/smbclient_arginfo.h -------------------------------------------------------------------------------- /smbclient_legacy_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardok/libsmbclient-php/HEAD/smbclient_legacy_arginfo.h -------------------------------------------------------------------------------- /tests/ClosedirTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardok/libsmbclient-php/HEAD/tests/ClosedirTest.php -------------------------------------------------------------------------------- /tests/CreateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardok/libsmbclient-php/HEAD/tests/CreateTest.php -------------------------------------------------------------------------------- /tests/GetxattrTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardok/libsmbclient-php/HEAD/tests/GetxattrTest.php -------------------------------------------------------------------------------- /tests/LseekTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardok/libsmbclient-php/HEAD/tests/LseekTest.php -------------------------------------------------------------------------------- /tests/OpendirTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardok/libsmbclient-php/HEAD/tests/OpendirTest.php -------------------------------------------------------------------------------- /tests/OptionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardok/libsmbclient-php/HEAD/tests/OptionsTest.php -------------------------------------------------------------------------------- /tests/ReadTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardok/libsmbclient-php/HEAD/tests/ReadTest.php -------------------------------------------------------------------------------- /tests/ReaddirTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardok/libsmbclient-php/HEAD/tests/ReaddirTest.php -------------------------------------------------------------------------------- /tests/RenameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardok/libsmbclient-php/HEAD/tests/RenameTest.php -------------------------------------------------------------------------------- /tests/StateFreeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardok/libsmbclient-php/HEAD/tests/StateFreeTest.php -------------------------------------------------------------------------------- /tests/StateInitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardok/libsmbclient-php/HEAD/tests/StateInitTest.php -------------------------------------------------------------------------------- /tests/StateNewTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardok/libsmbclient-php/HEAD/tests/StateNewTest.php -------------------------------------------------------------------------------- /tests/StreamsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardok/libsmbclient-php/HEAD/tests/StreamsTest.php -------------------------------------------------------------------------------- /tests/VersionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardok/libsmbclient-php/HEAD/tests/VersionTest.php -------------------------------------------------------------------------------- /tests/VfsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardok/libsmbclient-php/HEAD/tests/VfsTest.php -------------------------------------------------------------------------------- /tests/WriteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardok/libsmbclient-php/HEAD/tests/WriteTest.php -------------------------------------------------------------------------------- /tests/setup-share.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardok/libsmbclient-php/HEAD/tests/setup-share.sh --------------------------------------------------------------------------------