Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
1c497f16
Commit
1c497f16
authored
3 years ago
by
Aline Gondim Santos
Committed by
Andreas Traczyk
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
multistream: enable for windows and GNU/Linux platforms
Change-Id: Iaae6944d08304df08c916b4ba901e8530f220824
parent
f02603b0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/account.cpp
+4
-0
4 additions, 0 deletions
src/account.cpp
src/account.h
+2
-2
2 additions, 2 deletions
src/account.h
with
6 additions
and
2 deletions
src/account.cpp
+
4
−
0
View file @
1c497f16
...
...
@@ -123,7 +123,11 @@ Account::Account(const std::string& accountID)
,
upnpEnabled_
(
true
)
,
localModeratorsEnabled_
(
true
)
,
allModeratorsEnabled_
(
true
)
#if (defined(__linux__) and not defined(__ANDROID__)) || defined(WIN32)
,
multiStreamEnabled_
(
true
)
#else
,
multiStreamEnabled_
(
false
)
#endif
,
iceCompIdRfc5245Compliant_
(
false
)
{
// Initialize the codec order, used when creating a new account
...
...
This diff is collapsed.
Click to expand it.
src/account.h
+
2
−
2
View file @
1c497f16
...
...
@@ -566,8 +566,8 @@ protected:
bool
localModeratorsEnabled_
;
bool
allModeratorsEnabled_
;
bool
multiStreamEnabled_
;
bool
iceCompIdRfc5245Compliant_
;
bool
multiStreamEnabled_
{
false
}
;
bool
iceCompIdRfc5245Compliant_
{
false
}
;
/**
* private account codec searching functions
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment