From 2265a8478325a04871aab6a86d49c28d7d65443a Mon Sep 17 00:00:00 2001 From: wxr <464027401@qq.com> Date: 星期一, 29 五月 2023 15:17:01 +0800 Subject: [PATCH] 增加开锁二次确认弹窗 --- HDLLinPhoneSDK(OC)/HDLLinPhoneSDK/linphone-sdk/apple-darwin/Frameworks/linphone.framework/Headers/enums/encryption-engine-enums.h | 17 +++++++++++------ 1 files changed, 11 insertions(+), 6 deletions(-) diff --git "a/HDLLinPhoneSDK\357\274\210OC\357\274\211/HDLLinPhoneSDK/linphone-sdk/apple-darwin/Frameworks/linphone.framework/Headers/enums/encryption-engine-enums.h" "b/HDLLinPhoneSDK\357\274\210OC\357\274\211/HDLLinPhoneSDK/linphone-sdk/apple-darwin/Frameworks/linphone.framework/Headers/enums/encryption-engine-enums.h" old mode 100644 new mode 100755 index 93765e9..0365343 --- "a/HDLLinPhoneSDK\357\274\210OC\357\274\211/HDLLinPhoneSDK/linphone-sdk/apple-darwin/Frameworks/linphone.framework/Headers/enums/encryption-engine-enums.h" +++ "b/HDLLinPhoneSDK\357\274\210OC\357\274\211/HDLLinPhoneSDK/linphone-sdk/apple-darwin/Frameworks/linphone.framework/Headers/enums/encryption-engine-enums.h" @@ -21,11 +21,16 @@ #define _L_ENCRYPTION_ENGINE_ENUMS_H_ // ============================================================================= - -#define L_ENUM_VALUES_ENCRYPTION_ENGINE_SECURITY_LEVEL(F) \ - F(Unsafe /**< Security failure */) \ - F(ClearText /**< No encryption */) \ - F(Encrypted /**< Encrypted */) \ - F(Safe /**< Encrypted and verified */) +/** + * TODO move to encryption engine object when available + * #LinphoneChatRoomSecurityLevel is used to indicate the encryption security level of a chat room. + * @ingroup chatroom + */ +typedef enum _LinphoneChatRoomSecurityLevel{ + LinphoneChatRoomSecurityLevelUnsafe, /**< Security failure */ + LinphoneChatRoomSecurityLevelClearText, /**< No encryption */ + LinphoneChatRoomSecurityLevelEncrypted, /**< Encrypted */ + LinphoneChatRoomSecurityLevelSafe /**< Encrypted and verified */ +} LinphoneChatRoomSecurityLevel; #endif // ifndef _L_ENCRYPTION_ENGINE_ENUMS_H_ -- Gitblit v1.8.0