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
fe6330f5
Commit
fe6330f5
authored
Mar 30, 2009
by
Youness Alaoui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix an if/else correctly
parent
516886f1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
8 deletions
+11
-8
socket/turn.c
socket/turn.c
+11
-8
No files found.
socket/turn.c
View file @
fe6330f5
...
...
@@ -234,14 +234,17 @@ socket_send (NiceSocket *sock, const NiceAddress *to,
nice_address_copy_to_sockaddr
(
to
,
(
struct
sockaddr
*
)
&
sa
);
if
(
binding
)
{
if
(
priv
->
compatibility
==
NICE_TURN_SOCKET_COMPATIBILITY_DRAFT9
&&
len
+
sizeof
(
uint32_t
)
<=
sizeof
(
buffer
))
{
uint16_t
len16
=
htons
((
uint16_t
)
len
);
uint16_t
channel16
=
htons
(
binding
->
channel
);
memcpy
(
buffer
,
&
channel16
,
sizeof
(
uint16_t
));
memcpy
(
buffer
+
sizeof
(
uint16_t
),
&
len16
,
sizeof
(
uint16_t
));
memcpy
(
buffer
+
sizeof
(
uint32_t
),
buf
,
len
);
msg_len
=
len
+
sizeof
(
uint32_t
);
if
(
priv
->
compatibility
==
NICE_TURN_SOCKET_COMPATIBILITY_DRAFT9
)
{
if
(
len
+
sizeof
(
uint32_t
)
<=
sizeof
(
buffer
))
{
uint16_t
len16
=
htons
((
uint16_t
)
len
);
uint16_t
channel16
=
htons
(
binding
->
channel
);
memcpy
(
buffer
,
&
channel16
,
sizeof
(
uint16_t
));
memcpy
(
buffer
+
sizeof
(
uint16_t
),
&
len16
,
sizeof
(
uint16_t
));
memcpy
(
buffer
+
sizeof
(
uint32_t
),
buf
,
len
);
msg_len
=
len
+
sizeof
(
uint32_t
);
}
else
{
return
0
;
}
}
else
{
return
nice_socket_send
(
priv
->
base_socket
,
&
priv
->
server_addr
,
len
,
buf
);
}
...
...
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