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
81b158a1
Commit
81b158a1
authored
Mar 27, 2014
by
Olivier Crête
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pseudotcp: Also accept NiceInputMessage array with a single message
parent
95c2ecc6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
agent/pseudotcp.c
agent/pseudotcp.c
+6
-0
No files found.
agent/pseudotcp.c
View file @
81b158a1
...
@@ -908,6 +908,12 @@ pseudo_tcp_socket_notify_message (PseudoTcpSocket *self,
...
@@ -908,6 +908,12 @@ pseudo_tcp_socket_notify_message (PseudoTcpSocket *self,
{
{
gboolean
retval
;
gboolean
retval
;
g_assert_cmpuint
(
message
->
n_buffers
,
>
,
0
);
if
(
message
->
n_buffers
==
1
)
return
pseudo_tcp_socket_notify_packet
(
self
,
message
->
buffers
[
0
].
buffer
,
message
->
buffers
[
0
].
size
);
g_assert_cmpuint
(
message
->
n_buffers
,
==
,
2
);
g_assert_cmpuint
(
message
->
n_buffers
,
==
,
2
);
g_assert_cmpuint
(
message
->
buffers
[
0
].
size
,
==
,
HEADER_SIZE
);
g_assert_cmpuint
(
message
->
buffers
[
0
].
size
,
==
,
HEADER_SIZE
);
...
...
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