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
b6fac768
Commit
b6fac768
authored
Mar 23, 2015
by
Ghislain MARY
Browse files
Fix Python module build.
parent
f3d0f215
Changes
2
Hide whitespace changes
Inline
Side-by-side
tools/python/apixml2python.py
View file @
b6fac768
...
...
@@ -58,6 +58,7 @@ blacklisted_functions = [
'linphone_core_set_log_file'
,
# There is no use to wrap this function
'linphone_core_set_log_handler'
,
# Hand-written but put directly in the linphone module
'linphone_core_set_log_level'
,
# There is no use to wrap this function
'linphone_core_set_log_level_mask'
,
# There is no use to wrap this function
'linphone_core_set_video_policy'
,
# missing LinphoneVideoPolicy
'linphone_proxy_config_get_privacy'
,
# missing LinphonePrivacyMask
'linphone_proxy_config_normalize_number'
,
# to be handwritten because of result via arguments
...
...
tools/python/apixml2python/handwritten_definitions.mustache
View file @
b6fac768
...
...
@@ -106,7 +106,7 @@ static void pylinphone_module_log_handler(OrtpLogLevel lev, const char *fmt, va_
static void pylinphone_init_logging(void) {
linphone_core_serialize_logs();
linphone_core_set_log_handler(pylinphone_module_log_handler);
linphone_core_set_log_level(ORTP_MESSAGE|ORTP_WARNING|ORTP_ERROR|ORTP_FATAL);
linphone_core_set_log_level
_mask
(ORTP_MESSAGE|ORTP_WARNING|ORTP_ERROR|ORTP_FATAL);
}
...
...
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