From 6a99d9bf65aa5878cb409945ed2bdbdcb916d047 Mon Sep 17 00:00:00 2001 From: chenqiyang <1406175257@qq.com> Date: 星期五, 02 九月 2022 14:56:40 +0800 Subject: [PATCH] 更新linphone sdk --- Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/linphone.framework/Headers/enums/security-event-enums.h | 19 +++++++++++++------ 1 files changed, 13 insertions(+), 6 deletions(-) diff --git a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/linphone.framework/Headers/enums/security-event-enums.h b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/linphone.framework/Headers/enums/security-event-enums.h old mode 100644 new mode 100755 index 2af9765..15ba6c5 --- a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/linphone.framework/Headers/enums/security-event-enums.h +++ b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/linphone.framework/Headers/enums/security-event-enums.h @@ -22,11 +22,18 @@ // ============================================================================= -#define L_ENUM_VALUES_SECURITY_EVENT_TYPE(F) \ - F(None /**< Event is not a security event */) \ - F(SecurityLevelDowngraded /**< Chatroom security level downgraded event */) \ - F(ParticipantMaxDeviceCountExceeded /**< Participant has exceeded the maximum number of device event */) \ - F(EncryptionIdentityKeyChanged /**< Peer device instant messaging encryption identity key has changed event */) \ - F(ManInTheMiddleDetected /**< Man in the middle detected event */) \ +/** + * #LinphoneSecurityEventType is used to indicate the type of security event. + * @ingroup events + */ + +typedef enum _SecurityEventType{ + LinphoneSecurityEventTypeNone, /**< Event is not a security event */ + LinphoneSecurityEventTypeSecurityLevelDowngraded, /**< Chatroom security level downgraded event */ + LinphoneSecurityEventTypeParticipantMaxDeviceCountExceeded, /**< Participant has exceeded the maximum number of device event */ + LinphoneSecurityEventTypeEncryptionIdentityKeyChanged, /**< Peer device instant messaging encryption identity key has changed event */ + LinphoneSecurityEventTypeManInTheMiddleDetected, /**< Man in the middle detected event */ +} LinphoneSecurityEventType; + #endif // ifndef _L_SECURITY_EVENT_ENUMS_H_ -- Gitblit v1.8.0