Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libnice
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
libnice
Commits
c935e4cc
Commit
c935e4cc
authored
Nov 04, 2008
by
Youness Alaoui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change priv_attach_stream_component_socket to agent_attach_stream_component_socket
parent
d9a559b7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
5 deletions
+6
-5
agent/agent-priv.h
agent/agent-priv.h
+1
-1
agent/agent.c
agent/agent.c
+3
-3
agent/discovery.c
agent/discovery.c
+2
-1
No files found.
agent/agent-priv.h
View file @
c935e4cc
...
...
@@ -135,7 +135,7 @@ guint64 agent_candidate_pair_priority (NiceAgent *agent, NiceCandidate *local, N
GSource
*
agent_timeout_add_with_context
(
NiceAgent
*
agent
,
guint
interval
,
GSourceFunc
function
,
gpointer
data
);
void
priv
_attach_stream_component_socket
(
NiceAgent
*
agent
,
void
agent
_attach_stream_component_socket
(
NiceAgent
*
agent
,
Stream
*
stream
,
Component
*
component
,
NiceSocket
*
socket
);
...
...
agent/agent.c
View file @
c935e4cc
...
...
@@ -777,7 +777,7 @@ priv_add_new_candidate_discovery_turn (NiceAgent *agent,
return
FALSE
;
}
priv
_attach_stream_component_socket
(
agent
,
stream
,
agent
_attach_stream_component_socket
(
agent
,
stream
,
component
,
cdisco
->
nicesock
);
}
cdisco
->
turn
=
turn
;
...
...
@@ -1605,7 +1605,7 @@ nice_agent_g_source_cb (
*/
void
priv
_attach_stream_component_socket
(
NiceAgent
*
agent
,
agent
_attach_stream_component_socket
(
NiceAgent
*
agent
,
Stream
*
stream
,
Component
*
component
,
NiceSocket
*
socket
)
...
...
@@ -1643,7 +1643,7 @@ priv_attach_stream_component (NiceAgent *agent,
GSList
*
i
;
for
(
i
=
component
->
sockets
;
i
;
i
=
i
->
next
)
priv
_attach_stream_component_socket
(
agent
,
stream
,
component
,
i
->
data
);
agent
_attach_stream_component_socket
(
agent
,
stream
,
component
,
i
->
data
);
return
TRUE
;
}
...
...
agent/discovery.c
View file @
c935e4cc
...
...
@@ -414,7 +414,8 @@ NiceCandidate *discovery_add_local_host_candidate (
if
(
udp_socket
)
{
gboolean
result
;
priv_attach_stream_component_socket
(
agent
,
stream
,
component
,
udp_socket
);
agent_attach_stream_component_socket
(
agent
,
stream
,
component
,
udp_socket
);
candidate
->
sockptr
=
udp_socket
;
candidate
->
addr
=
udp_socket
->
addr
;
...
...
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