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
e940878b
Commit
e940878b
authored
Sep 11, 2009
by
Martin Sustrik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
build on win32 fixed
parent
7be7962f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
2 deletions
+10
-2
libzmq.vcproj
msvc/libzmq/libzmq.vcproj
+8
-0
socket_base.cpp
src/socket_base.cpp
+1
-1
tcp_connecter.cpp
src/tcp_connecter.cpp
+1
-1
No files found.
msvc/libzmq/libzmq.vcproj
View file @
e940878b
...
...
@@ -241,6 +241,10 @@
RelativePath=
"..\..\src\socket_base.cpp"
>
</File>
<File
RelativePath=
"..\..\src\sub.cpp"
>
</File>
<File
RelativePath=
"..\..\src\tcp_connecter.cpp"
>
...
...
@@ -451,6 +455,10 @@
RelativePath=
"..\..\src\stdint.hpp"
>
</File>
<File
RelativePath=
"..\..\src\sub.hpp"
>
</File>
<File
RelativePath=
"..\..\src\tcp_connecter.hpp"
>
...
...
src/socket_base.cpp
View file @
e940878b
...
...
@@ -142,7 +142,7 @@ int zmq::socket_base_t::setsockopt (int option_, const void *optval_,
case
ZMQ_SUBSCRIBE
:
case
ZMQ_UNSUBSCRIBE
:
errno
=
E
NOTSUP
;
errno
=
E
FAULT
;
return
-
1
;
default
:
...
...
src/tcp_connecter.cpp
View file @
e940878b
...
...
@@ -109,7 +109,7 @@ zmq::fd_t zmq::tcp_connecter_t::connect ()
// Assert that the error was caused by the networking problems
// rather than 0MQ bug.
zmq_assert
(
err
==
ECONNREFUSED
);
zmq_assert
(
err
==
WSA
ECONNREFUSED
);
errno
=
err
;
return
retired_fd
;
...
...
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