Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liblinphone
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
10
Issues
10
List
Board
Labels
Milestones
Merge Requests
21
Merge Requests
21
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
External Wiki
External Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
BC
public
liblinphone
Commits
e21f193a
Commit
e21f193a
authored
Oct 18, 2017
by
Sylvain Berfini
🎩
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed wrongly named method in factory
parent
4ec852cb
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
7 deletions
+3
-7
factory.c
coreapi/factory.c
+1
-1
factory.h
include/linphone/factory.h
+1
-1
migration.sh
wrappers/java/migration.sh
+1
-5
No files found.
coreapi/factory.c
View file @
e21f193a
...
...
@@ -363,7 +363,7 @@ void linphone_factory_set_user_data(LinphoneFactory *factory, void *data) {
factory
->
user_data
=
data
;
}
void
linphone_factory_log_collection_path
(
LinphoneFactory
*
factory
,
const
char
*
path
)
{
void
linphone_factory_
set_
log_collection_path
(
LinphoneFactory
*
factory
,
const
char
*
path
)
{
linphone_core_set_log_collection_path
(
path
);
}
...
...
include/linphone/factory.h
View file @
e21f193a
...
...
@@ -343,7 +343,7 @@ LINPHONE_PUBLIC void linphone_factory_set_user_data(LinphoneFactory *factory, vo
* @param[in] factory the LinphoneFactory
* @param[in] the path of the logs
*/
LINPHONE_PUBLIC
void
linphone_factory_log_collection_path
(
LinphoneFactory
*
factory
,
const
char
*
path
);
LINPHONE_PUBLIC
void
linphone_factory_
set_
log_collection_path
(
LinphoneFactory
*
factory
,
const
char
*
path
);
/**
* Enables or disables log collection
...
...
wrappers/java/migration.sh
View file @
e21f193a
...
...
@@ -275,8 +275,6 @@ s/new XmlRpcSessionImpl(LinphoneManager.getLcIfManagerNotDestroyedOrNull(), /Lin
# TODO
#Tunnel, TunnelConfig
#AccountCreator.updatePassword => What to do ?
#Factory.instance().enableLogCollection(isDebugEnabled);
#Factory.instance().setDebugMode(isDebugEnabled, context.getString(R.string.app_name));
# Manual changes required
# Some callbacks no longer exist, their name will be "removed", remove them
...
...
@@ -308,9 +306,7 @@ s/new XmlRpcSessionImpl(LinphoneManager.getLcIfManagerNotDestroyedOrNull(), /Lin
# # Factory
#Factory.createAccountCreator() => Core.createAccountCreator()
#Factory.createPresenceModel() => Core.createPresenceModel()
#Factory.instance().setLogCollectionPath(getFilesDir().getAbsolutePath()); => Core.setLogCollectionPath
#Factory.instance().enableLogCollection(isDebugEnabled); => Core.enableLogCollection
#Factory.instance().setDebugMode(isDebugEnabled, getString(R.string.app_name)); => Core.setLogLevelMask
#Factory.instance().enableLogCollection(isDebugEnabled); now takes a LogCollectionState
# # Core
#Core.getVideoDevice and Core.setVideoDevice now takes/returns String instead of int
...
...
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