]> source.dussan.org Git - nextcloud-server.git/commit
New SMB storage backend
authorRobin Appelman <icewind@owncloud.com>
Tue, 26 Aug 2014 16:46:07 +0000 (18:46 +0200)
committerThomas Müller <thomas.mueller@tmit.eu>
Mon, 16 Feb 2015 12:52:11 +0000 (13:52 +0100)
commitd2255a1d304aa5e537e8aa097add2a51aa0e5d89
tree79801d54149e6c8037e717a1d5d6ac43327eb6db
parent78febb2ee594bac5d483f7c8534ed5eb33c2c528
New SMB storage backend
75 files changed:
apps/files_external/3rdparty/autoload.php [new file with mode: 0644]
apps/files_external/3rdparty/composer.json [new file with mode: 0644]
apps/files_external/3rdparty/composer.lock [new file with mode: 0644]
apps/files_external/3rdparty/composer/ClassLoader.php [new file with mode: 0644]
apps/files_external/3rdparty/composer/autoload_classmap.php [new file with mode: 0644]
apps/files_external/3rdparty/composer/autoload_namespaces.php [new file with mode: 0644]
apps/files_external/3rdparty/composer/autoload_psr4.php [new file with mode: 0644]
apps/files_external/3rdparty/composer/autoload_real.php [new file with mode: 0644]
apps/files_external/3rdparty/composer/installed.json [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/.gitignore [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/.travis.yml [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/LICENSE.txt [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/README.md [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/composer.json [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/src/Connection.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/src/ErrorCodes.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/src/Exception/AccessDeniedException.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/src/Exception/AlreadyExistsException.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/src/Exception/AuthenticationException.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/src/Exception/ConnectException.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/src/Exception/ConnectionException.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/src/Exception/ConnectionRefusedException.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/src/Exception/Exception.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/src/Exception/FileInUseException.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/src/Exception/ForbiddenException.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/src/Exception/HostDownException.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidHostException.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidRequestException.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidTypeException.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/src/Exception/NoRouteToHostException.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/src/Exception/NotEmptyException.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/src/Exception/NotFoundException.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/src/Exception/TimedOutException.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/src/FileInfo.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/src/IFileInfo.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/src/IShare.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/src/NativeFileInfo.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/src/NativeServer.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/src/NativeShare.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/src/NativeState.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/src/NativeStream.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/src/Parser.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/src/RawConnection.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/src/Server.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/src/Share.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/tests/AbstractShare.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/tests/NativeShare.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/tests/NativeStream.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/tests/Parser.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/tests/Server.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/tests/Share.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/tests/bootstrap.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/tests/config.json [new file with mode: 0644]
apps/files_external/3rdparty/icewind/smb/tests/phpunit.xml [new file with mode: 0644]
apps/files_external/3rdparty/icewind/streams/.gitignore [new file with mode: 0644]
apps/files_external/3rdparty/icewind/streams/.travis.yml [new file with mode: 0644]
apps/files_external/3rdparty/icewind/streams/README.md [new file with mode: 0644]
apps/files_external/3rdparty/icewind/streams/composer.json [new file with mode: 0644]
apps/files_external/3rdparty/icewind/streams/src/CallbackWrapper.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/streams/src/Directory.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/streams/src/File.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/streams/src/IteratorDirectory.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/streams/src/NullWrapper.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/streams/src/Wrapper.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/streams/tests/CallbackWrapper.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/streams/tests/IteratorDirectory.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/streams/tests/NullWrapper.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/streams/tests/Wrapper.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/streams/tests/bootstrap.php [new file with mode: 0644]
apps/files_external/3rdparty/icewind/streams/tests/phpunit.xml [new file with mode: 0644]
apps/files_external/3rdparty/smb4php/smb.php [deleted file]
apps/files_external/appinfo/app.php
apps/files_external/lib/smb.php
apps/files_external/lib/smb_oc.php
apps/files_external/tests/backends/smb.php