-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7774 from nextcloud/smb-2.0.3-12
[12] update icewind/smb to 2.0.3
- Loading branch information
Showing
17 changed files
with
162 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidParameterException.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
/** | ||
* Copyright (c) 2014 Robin Appelman <icewind@owncloud.com> | ||
* This file is licensed under the Licensed under the MIT license: | ||
* http://opensource.org/licenses/MIT | ||
*/ | ||
|
||
namespace Icewind\SMB\Exception; | ||
|
||
class InvalidParameterException extends InvalidRequestException {} |
11 changes: 11 additions & 0 deletions
11
apps/files_external/3rdparty/icewind/smb/src/Exception/OutOfSpaceException.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
/** | ||
* Copyright (c) 2014 Robin Appelman <icewind@owncloud.com> | ||
* This file is licensed under the Licensed under the MIT license: | ||
* http://opensource.org/licenses/MIT | ||
*/ | ||
|
||
namespace Icewind\SMB\Exception; | ||
|
||
class OutOfSpaceException extends InvalidRequestException { | ||
} |
16 changes: 16 additions & 0 deletions
16
apps/files_external/3rdparty/icewind/smb/src/Exception/RevisionMismatchException.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
/** | ||
* Copyright (c) 2014 Robin Appelman <icewind@owncloud.com> | ||
* This file is licensed under the Licensed under the MIT license: | ||
* http://opensource.org/licenses/MIT | ||
*/ | ||
|
||
namespace Icewind\SMB\Exception; | ||
|
||
use Throwable; | ||
|
||
class RevisionMismatchException extends Exception { | ||
public function __construct($message = 'Protocol version mismatch', $code = 0, Throwable $previous = null) { | ||
parent::__construct($message, $code, $previous); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.