Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
dhtnet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
dhtnet
Commits
02d6dad6
Commit
02d6dad6
authored
Nov 6, 2023
by
Adrien Béraud
Browse files
Options
Downloads
Patches
Plain Diff
IceTransport: make isTCPEnabled const
Change-Id: I869fcb8903654558c39afa4f9d4aaefecd7cb40a
parent
fe79669b
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/ice_transport.h
+1
-1
1 addition, 1 deletion
include/ice_transport.h
src/ice_transport.cpp
+1
-1
1 addition, 1 deletion
src/ice_transport.cpp
with
2 additions
and
2 deletions
include/ice_transport.h
+
1
−
1
View file @
02d6dad6
...
@@ -184,7 +184,7 @@ public:
...
@@ -184,7 +184,7 @@ public:
bool
setSlaveSession
();
bool
setSlaveSession
();
bool
setInitiatorSession
();
bool
setInitiatorSession
();
bool
isTCPEnabled
();
bool
isTCPEnabled
()
const
;
ICESDP
parseIceCandidates
(
std
::
string_view
sdp_msg
);
ICESDP
parseIceCandidates
(
std
::
string_view
sdp_msg
);
...
...
This diff is collapsed.
Click to expand it.
src/ice_transport.cpp
+
1
−
1
View file @
02d6dad6
...
@@ -1742,7 +1742,7 @@ IceTransport::waitForData(unsigned compId, std::chrono::milliseconds timeout, st
...
@@ -1742,7 +1742,7 @@ IceTransport::waitForData(unsigned compId, std::chrono::milliseconds timeout, st
}
}
bool
bool
IceTransport
::
isTCPEnabled
()
IceTransport
::
isTCPEnabled
()
const
{
{
return
pimpl_
->
isTcpEnabled
();
return
pimpl_
->
isTcpEnabled
();
}
}
...
...
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