Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
4ab5ec92
Commit
4ab5ec92
authored
Feb 15, 2013
by
Simon Morlat
Browse files
API fixups and cleanups.
parent
04fef5fc
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
5 deletions
+3
-5
coreapi/linphonecall.c
coreapi/linphonecall.c
+1
-1
coreapi/linphonecore.h
coreapi/linphonecore.h
+1
-3
mediastreamer2
mediastreamer2
+1
-1
No files found.
coreapi/linphonecall.c
View file @
4ab5ec92
...
...
@@ -1100,7 +1100,7 @@ void linphone_call_params_add_custom_header(LinphoneCallParams *params, const ch
params
->
custom_headers
=
sal_custom_header_append
(
params
->
custom_headers
,
header_name
,
header_value
);
}
const
char
*
linphone_call_params_get_custom_header
(
LinphoneCallParams
*
params
,
const
char
*
header_name
){
const
char
*
linphone_call_params_get_custom_header
(
const
LinphoneCallParams
*
params
,
const
char
*
header_name
){
return
sal_custom_header_find
(
params
->
custom_headers
,
header_name
);
}
...
...
coreapi/linphonecore.h
View file @
4ab5ec92
...
...
@@ -37,14 +37,12 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
extern
"C"
{
#endif
struct
_MSSndCard
;
struct
_LinphoneCore
;
/**
* Linphone core main object created by function linphone_core_new() .
* @ingroup initializing
*/
typedef
struct
_LinphoneCore
LinphoneCore
;
struct
SalOp
;
struct
_LpConfig
;
...
...
@@ -201,7 +199,7 @@ void linphone_call_params_enable_low_bandwidth(LinphoneCallParams *cp, bool_t en
void
linphone_call_params_set_record_file
(
LinphoneCallParams
*
cp
,
const
char
*
path
);
const
char
*
linphone_call_params_get_record_file
(
const
LinphoneCallParams
*
cp
);
void
linphone_call_params_add_custom_header
(
LinphoneCallParams
*
params
,
const
char
*
header_name
,
const
char
*
header_value
);
const
char
*
linphone_call_params_get_custom_header
(
LinphoneCallParams
*
params
,
const
char
*
header_name
);
const
char
*
linphone_call_params_get_custom_header
(
const
LinphoneCallParams
*
params
,
const
char
*
header_name
);
/**
* Enum describing failure reasons.
* @ingroup initializing
...
...
mediastreamer2
@
44992c09
Subproject commit
eeaab2239d6545f18d5219b62adda8d1dda3b104
Subproject commit
44992c096673ace578ba5248db7019ba1e0d78d5
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment