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
6526c720
Commit
6526c720
authored
Dec 13, 2010
by
Youness Alaoui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compilation errors as a result of the rebase
parent
b48f8e6c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
socket/turn.c
socket/turn.c
+4
-2
stun/usages/turn.h
stun/usages/turn.h
+1
-1
No files found.
socket/turn.c
View file @
6526c720
...
...
@@ -1230,9 +1230,11 @@ priv_send_create_permission(TurnPriv *priv, uint8_t *realm, gsize realm_len,
msg_buf_len
,
(
gchar
*
)
msg
->
buffer
);
if
(
nice_socket_is_reliable
(
priv
->
base_socket
))
{
stun_timer_start_reliable
(
&
msg
->
timer
);
stun_timer_start_reliable
(
&
msg
->
timer
,
STUN_TIMER_DEFAULT_RELIABLE_TIMEOUT
);
}
else
{
stun_timer_start
(
&
msg
->
timer
);
stun_timer_start
(
&
msg
->
timer
,
STUN_TIMER_DEFAULT_TIMEOUT
,
STUN_TIMER_DEFAULT_MAX_RETRANSMISSIONS
);
}
priv_schedule_tick
(
priv
);
...
...
stun/usages/turn.h
View file @
6526c720
...
...
@@ -103,7 +103,7 @@ typedef enum {
STUN_USAGE_TURN_COMPATIBILITY_DRAFT9
,
STUN_USAGE_TURN_COMPATIBILITY_GOOGLE
,
STUN_USAGE_TURN_COMPATIBILITY_MSN
,
STUN_USAGE_TURN_COMPATIBILITY_OC2007
STUN_USAGE_TURN_COMPATIBILITY_OC2007
,
STUN_USAGE_TURN_COMPATIBILITY_RFC5766
,
}
StunUsageTurnCompatibility
;
...
...
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