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/headers.h |   23 +++++++++++------------
 1 files changed, 11 insertions(+), 12 deletions(-)

diff --git a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/linphone.framework/Headers/headers.h b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/linphone.framework/Headers/headers.h
old mode 100644
new mode 100755
index 7037215..8e2d2ce
--- a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/linphone.framework/Headers/headers.h
+++ b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/linphone.framework/Headers/headers.h
@@ -46,28 +46,27 @@
 
 /**
  * Search for a given header name and return its value.
- * @param obj the #LinphoneHeaders object
- * @param name the header's name
- * @return the header's value or NULL if not found.
+ * @param headers the #LinphoneHeaders object @notnil
+ * @param name the header's name @notnil
+ * @return the header's value or NULL if not found. @maybenil
 **/
 
-LINPHONE_PUBLIC const char* linphone_headers_get_value(LinphoneHeaders *obj, const char *header_name);
+LINPHONE_PUBLIC const char* linphone_headers_get_value(LinphoneHeaders *headers, const char *header_name);
 
 /**
  * Add given header name and corresponding value.
- * @param obj the #LinphoneHeaders object
- * @param name the header's name
- * @param the header's value
+ * @param headers the #LinphoneHeaders object @notnil
+ * @param name the header's name @notnil
+ * @param value the header's value @maybenil
 **/
-LINPHONE_PUBLIC void linphone_headers_add(LinphoneHeaders *obj, const char *name, const char *value);
+LINPHONE_PUBLIC void linphone_headers_add(LinphoneHeaders *headers, const char *name, const char *value);
 
 /**
  * Add given header name and corresponding value.
- * @param obj the #LinphoneHeaders object
- * @param name the header's name
- * @param the header's value
+ * @param headers the #LinphoneHeaders object @notnil
+ * @param name the header's name @notnil
 **/
-LINPHONE_PUBLIC void linphone_headers_remove(LinphoneHeaders *obj, const char *name);
+LINPHONE_PUBLIC void linphone_headers_remove(LinphoneHeaders *headers, const char *name);
 
 
 /**

--
Gitblit v1.8.0