Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
6e1b1fef
Commit
6e1b1fef
authored
Jan 10, 2014
by
Richard Newton
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #816 from snikulov/fix_test_windows
windows: changed tcp port from glrpc assigned to unassigned one
parents
26671155
bd2874a3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
test_stream.cpp
tests/test_stream.cpp
+2
-2
No files found.
tests/test_stream.cpp
View file @
6e1b1fef
...
...
@@ -171,12 +171,12 @@ test_stream_to_stream (void)
void
*
server
=
zmq_socket
(
ctx
,
ZMQ_STREAM
);
assert
(
server
);
rc
=
zmq_bind
(
server
,
"tcp://127.0.0.1:90
8
0"
);
rc
=
zmq_bind
(
server
,
"tcp://127.0.0.1:90
7
0"
);
assert
(
rc
==
0
);
void
*
client
=
zmq_socket
(
ctx
,
ZMQ_STREAM
);
assert
(
client
);
rc
=
zmq_connect
(
client
,
"tcp://localhost:90
8
0"
);
rc
=
zmq_connect
(
client
,
"tcp://localhost:90
7
0"
);
assert
(
rc
==
0
);
// It would be less surprising to get an empty message instead
// of having to fetch the identity like this [PH 2013/06/27]
...
...
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