Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_external/3rdparty/icewind/smb/src/IOptions.php')
-rw-r--r--apps/files_external/3rdparty/icewind/smb/src/IOptions.php20
1 files changed, 16 insertions, 4 deletions
diff --git a/apps/files_external/3rdparty/icewind/smb/src/IOptions.php b/apps/files_external/3rdparty/icewind/smb/src/IOptions.php
index c46d2c8b3dc..4ab7b26c660 100644
--- a/apps/files_external/3rdparty/icewind/smb/src/IOptions.php
+++ b/apps/files_external/3rdparty/icewind/smb/src/IOptions.php
@@ -22,8 +22,20 @@
namespace Icewind\SMB;
interface IOptions {
- /**
- * @return int
- */
- public function getTimeout();
+ const PROTOCOL_NT1 = 'NT1';
+ const PROTOCOL_SMB2 = 'SMB2';
+ const PROTOCOL_SMB2_02 = 'SMB2_02';
+ const PROTOCOL_SMB2_22 = 'SMB2_22';
+ const PROTOCOL_SMB2_24 = 'SMB2_24';
+ const PROTOCOL_SMB3 = 'SMB3';
+ const PROTOCOL_SMB3_00 = 'SMB3_00';
+ const PROTOCOL_SMB3_02 = 'SMB3_02';
+ const PROTOCOL_SMB3_10 = 'SMB3_10';
+ const PROTOCOL_SMB3_11 = 'SMB3_11';
+
+ public function getTimeout(): int;
+
+ public function getMinProtocol(): ?string;
+
+ public function getMaxProtocol(): ?string;
}