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
e657258c
Commit
e657258c
authored
Mar 31, 2016
by
Ghislain MARY
Browse files
Fix generation of Python module.
parent
073a25a5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
2 deletions
+8
-2
coreapi/help/Doxyfile.in
coreapi/help/Doxyfile.in
+1
-1
coreapi/linphonecore.h
coreapi/linphonecore.h
+2
-0
tools/genapixml.py
tools/genapixml.py
+5
-1
No files found.
coreapi/help/Doxyfile.in
View file @
e657258c
...
...
@@ -496,7 +496,7 @@ HIDE_IN_BODY_DOCS = NO
# will be excluded. Set it to YES to include the internal documentation.
# The default value is: NO.
INTERNAL_DOCS =
NO
INTERNAL_DOCS =
YES
# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file
# names in lower-case letters. If set to YES, upper-case letters are also
...
...
coreapi/linphonecore.h
View file @
e657258c
...
...
@@ -3241,11 +3241,13 @@ LINPHONE_PUBLIC void linphone_core_verify_server_certificates(LinphoneCore *lc,
LINPHONE_PUBLIC
void
linphone_core_verify_server_cn
(
LinphoneCore
*
lc
,
bool_t
yesno
);
LINPHONE_PUBLIC
void
linphone_core_set_root_ca
(
LinphoneCore
*
lc
,
const
char
*
path
);
/**
* @internal
* Set the pointer to an externally provided ssl configuration for the crypto library
* @param lc #LinphoneCore object
* @param[in] ssl_config A pointer to an opaque structure which will be provided directly to the crypto library used in bctoolbox. Use with extra care.
* This ssl_config structure is responsability of the caller and will not be freed at the connection's end.
* @ingroup initializing
* @endinternal
*/
LINPHONE_PUBLIC
void
linphone_core_set_ssl_config
(
LinphoneCore
*
lc
,
void
*
ssl_config
);
LINPHONE_PUBLIC
const
char
*
linphone_core_get_root_ca
(
LinphoneCore
*
lc
);
...
...
tools/genapixml.py
View file @
e657258c
...
...
@@ -498,6 +498,9 @@ class Project:
self
.
add
(
td
)
def
__parseCFunctionMemberdef
(
self
,
node
):
internal
=
node
.
find
(
"./detaileddescription/internal"
)
if
internal
is
not
None
:
return
None
missingDocWarning
=
''
name
=
node
.
find
(
'./name'
).
text
t
=
''
.
join
(
node
.
find
(
'./type'
).
itertext
())
...
...
@@ -557,7 +560,8 @@ class Project:
memberdefs
=
tree
.
findall
(
"./compounddef[@kind='group']/sectiondef[@kind='func']/memberdef[@kind='function'][@prot='public'][@static='no']"
)
for
m
in
memberdefs
:
f
=
self
.
__parseCFunctionMemberdef
(
m
)
self
.
add
(
f
)
if
f
is
not
None
:
self
.
add
(
f
)
def
initFromFiles
(
self
,
xmlfiles
):
trees
=
[]
...
...
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