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
0a2f9561
Unverified
Commit
0a2f9561
authored
5 years ago
by
Sébastien Blin
Browse files
Options
Downloads
Patches
Plain Diff
misc: fix build for ubuntu 16.04
Change-Id: I9a8a6c7fe2be86c3514d871150d1d78a3dc9f7f7
parent
a7d291ec
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/jamidht/connectionmanager.cpp
+2
-1
2 additions, 1 deletion
src/jamidht/connectionmanager.cpp
with
2 additions
and
1 deletion
src/jamidht/connectionmanager.cpp
+
2
−
1
View file @
0a2f9561
...
...
@@ -470,7 +470,8 @@ ConnectionManager::Impl::onDhtPeerRequest(const PeerConnectionRequest& req, cons
return
;
}
certMap_
.
emplace
(
cert
->
getId
(),
std
::
make_pair
(
cert
,
deviceId
));
auto
certToDev
=
std
::
pair
<
std
::
shared_ptr
<
dht
::
crypto
::
Certificate
>
,
dht
::
InfoHash
>
(
cert
,
deviceId
);
certMap_
.
emplace
(
cert
->
getId
(),
std
::
move
(
certToDev
));
// Because the connection is accepted, create an ICE socket.
auto
&
iceTransportFactory
=
Manager
::
instance
().
getIceTransportFactory
();
...
...
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