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
7be6ad05
Commit
7be6ad05
authored
Sep 11, 2015
by
Pieter Hintjens
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replaced tabs in some files, with spaces
parent
1fdf8f78
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
17 additions
and
17 deletions
+17
-17
client.cpp
src/client.cpp
+1
-1
dealer.cpp
src/dealer.cpp
+1
-1
pair.cpp
src/pair.cpp
+1
-1
pull.cpp
src/pull.cpp
+1
-1
push.cpp
src/push.cpp
+1
-1
router.cpp
src/router.cpp
+1
-1
server.cpp
src/server.cpp
+1
-1
tcp.cpp
src/tcp.cpp
+5
-5
tcp_address.cpp
src/tcp_address.cpp
+4
-4
xsub.cpp
src/xsub.cpp
+1
-1
No files found.
src/client.cpp
View file @
7be6ad05
...
...
@@ -44,7 +44,7 @@ zmq::client_t::~client_t ()
void
zmq
::
client_t
::
xattach_pipe
(
pipe_t
*
pipe_
,
bool
subscribe_to_all_
)
{
LIBZMQ_UNUSED
(
subscribe_to_all_
);
LIBZMQ_UNUSED
(
subscribe_to_all_
);
zmq_assert
(
pipe_
);
...
...
src/dealer.cpp
View file @
7be6ad05
...
...
@@ -45,7 +45,7 @@ zmq::dealer_t::~dealer_t ()
void
zmq
::
dealer_t
::
xattach_pipe
(
pipe_t
*
pipe_
,
bool
subscribe_to_all_
)
{
LIBZMQ_UNUSED
(
subscribe_to_all_
);
LIBZMQ_UNUSED
(
subscribe_to_all_
);
zmq_assert
(
pipe_
);
...
...
src/pair.cpp
View file @
7be6ad05
...
...
@@ -48,7 +48,7 @@ zmq::pair_t::~pair_t ()
void
zmq
::
pair_t
::
xattach_pipe
(
pipe_t
*
pipe_
,
bool
subscribe_to_all_
)
{
LIBZMQ_UNUSED
(
subscribe_to_all_
);
LIBZMQ_UNUSED
(
subscribe_to_all_
);
zmq_assert
(
pipe_
!=
NULL
);
...
...
src/pull.cpp
View file @
7be6ad05
...
...
@@ -45,7 +45,7 @@ zmq::pull_t::~pull_t ()
void
zmq
::
pull_t
::
xattach_pipe
(
pipe_t
*
pipe_
,
bool
subscribe_to_all_
)
{
LIBZMQ_UNUSED
(
subscribe_to_all_
);
LIBZMQ_UNUSED
(
subscribe_to_all_
);
zmq_assert
(
pipe_
);
fq
.
attach
(
pipe_
);
...
...
src/push.cpp
View file @
7be6ad05
...
...
@@ -45,7 +45,7 @@ zmq::push_t::~push_t ()
void
zmq
::
push_t
::
xattach_pipe
(
pipe_t
*
pipe_
,
bool
subscribe_to_all_
)
{
LIBZMQ_UNUSED
(
subscribe_to_all_
);
LIBZMQ_UNUSED
(
subscribe_to_all_
);
// Don't delay pipe termination as there is no one
// to receive the delimiter.
...
...
src/router.cpp
View file @
7be6ad05
...
...
@@ -67,7 +67,7 @@ zmq::router_t::~router_t ()
void
zmq
::
router_t
::
xattach_pipe
(
pipe_t
*
pipe_
,
bool
subscribe_to_all_
)
{
LIBZMQ_UNUSED
(
subscribe_to_all_
);
LIBZMQ_UNUSED
(
subscribe_to_all_
);
zmq_assert
(
pipe_
);
...
...
src/server.cpp
View file @
7be6ad05
...
...
@@ -49,7 +49,7 @@ zmq::server_t::~server_t ()
void
zmq
::
server_t
::
xattach_pipe
(
pipe_t
*
pipe_
,
bool
subscribe_to_all_
)
{
LIBZMQ_UNUSED
(
subscribe_to_all_
);
LIBZMQ_UNUSED
(
subscribe_to_all_
);
zmq_assert
(
pipe_
);
...
...
src/tcp.cpp
View file @
7be6ad05
...
...
@@ -95,13 +95,13 @@ void zmq::set_tcp_receive_buffer (fd_t sockfd_, int bufsize_)
void
zmq
::
tune_tcp_keepalives
(
fd_t
s_
,
int
keepalive_
,
int
keepalive_cnt_
,
int
keepalive_idle_
,
int
keepalive_intvl_
)
{
// These options are used only under certain #ifdefs below.
LIBZMQ_UNUSED
(
keepalive_
);
LIBZMQ_UNUSED
(
keepalive_cnt_
);
LIBZMQ_UNUSED
(
keepalive_idle_
);
LIBZMQ_UNUSED
(
keepalive_intvl_
);
LIBZMQ_UNUSED
(
keepalive_
);
LIBZMQ_UNUSED
(
keepalive_cnt_
);
LIBZMQ_UNUSED
(
keepalive_idle_
);
LIBZMQ_UNUSED
(
keepalive_intvl_
);
// If none of the #ifdefs apply, then s_ is unused.
LIBZMQ_UNUSED
(
s_
);
LIBZMQ_UNUSED
(
s_
);
// Tuning TCP keep-alives if platform allows it
// All values = -1 means skip and leave it for OS
...
...
src/tcp_address.cpp
View file @
7be6ad05
...
...
@@ -57,7 +57,7 @@
int
zmq
::
tcp_address_t
::
resolve_nic_name
(
const
char
*
nic_
,
bool
ipv6_
,
bool
is_src_
)
{
// TODO: Unused parameter, IPv6 support not implemented for Solaris.
LIBZMQ_UNUSED
(
ipv6_
);
LIBZMQ_UNUSED
(
ipv6_
);
// Create a socket.
const
int
fd
=
open_socket
(
AF_INET
,
SOCK_DGRAM
,
0
);
...
...
@@ -124,7 +124,7 @@ int zmq::tcp_address_t::resolve_nic_name (const char *nic_, bool ipv6_, bool is_
int
zmq
::
tcp_address_t
::
resolve_nic_name
(
const
char
*
nic_
,
bool
ipv6_
,
bool
is_src_
)
{
// TODO: Unused parameter, IPv6 support not implemented for AIX or HP/UX.
LIBZMQ_UNUSED
(
ipv6_
);
LIBZMQ_UNUSED
(
ipv6_
);
// Create a socket.
const
int
sd
=
open_socket
(
AF_INET
,
SOCK_DGRAM
,
0
);
...
...
@@ -210,8 +210,8 @@ int zmq::tcp_address_t::resolve_nic_name (const char *nic_, bool ipv6_, bool is_
// This is true especially of Windows.
int
zmq
::
tcp_address_t
::
resolve_nic_name
(
const
char
*
nic_
,
bool
ipv6_
,
bool
is_src_
)
{
LIBZMQ_UNUSED
(
nic_
);
LIBZMQ_UNUSED
(
ipv6_
);
LIBZMQ_UNUSED
(
nic_
);
LIBZMQ_UNUSED
(
ipv6_
);
errno
=
ENODEV
;
return
-
1
;
...
...
src/xsub.cpp
View file @
7be6ad05
...
...
@@ -56,7 +56,7 @@ zmq::xsub_t::~xsub_t ()
void
zmq
::
xsub_t
::
xattach_pipe
(
pipe_t
*
pipe_
,
bool
subscribe_to_all_
)
{
LIBZMQ_UNUSED
(
subscribe_to_all_
);
LIBZMQ_UNUSED
(
subscribe_to_all_
);
zmq_assert
(
pipe_
);
fq
.
attach
(
pipe_
);
...
...
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