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
232094a0
Commit
232094a0
authored
Feb 22, 2016
by
Constantin Rack
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1825 from bluca/whitespace_and_werror
parents
406b5738
80e529a1
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
52 additions
and
53 deletions
+52
-53
dish.cpp
src/dish.cpp
+4
-4
encoder.hpp
src/encoder.hpp
+4
-4
pipe.cpp
src/pipe.cpp
+1
-1
poller_base.cpp
src/poller_base.cpp
+1
-1
radio.cpp
src/radio.cpp
+2
-2
reaper.cpp
src/reaper.cpp
+1
-1
signaler.cpp
src/signaler.cpp
+1
-1
socket_base.cpp
src/socket_base.cpp
+6
-7
socket_poller.cpp
src/socket_poller.cpp
+8
-7
socks_connecter.cpp
src/socks_connecter.cpp
+3
-3
stream_engine.cpp
src/stream_engine.cpp
+6
-6
tcp_connecter.cpp
src/tcp_connecter.cpp
+1
-1
tcp_listener.cpp
src/tcp_listener.cpp
+1
-1
thread.hpp
src/thread.hpp
+2
-3
udp_address.cpp
src/udp_address.cpp
+1
-1
udp_engine.cpp
src/udp_engine.cpp
+6
-6
xpub.cpp
src/xpub.cpp
+1
-1
zmq.cpp
src/zmq.cpp
+3
-3
No files found.
src/dish.cpp
View file @
232094a0
...
...
@@ -333,14 +333,14 @@ int zmq::dish_session_t::pull_msg (msg_t *msg_)
if
(
msg_
->
is_join
())
{
rc
=
command
.
init_size
(
group_length
+
5
);
errno_assert
(
rc
==
0
);
offset
=
5
;
errno_assert
(
rc
==
0
);
offset
=
5
;
memcpy
(
command
.
data
(),
"
\4
JOIN"
,
5
);
}
else
{
rc
=
command
.
init_size
(
group_length
+
6
);
errno_assert
(
rc
==
0
);
offset
=
6
;
errno_assert
(
rc
==
0
);
offset
=
6
;
memcpy
(
command
.
data
(),
"
\5
LEAVE"
,
6
);
}
...
...
src/encoder.hpp
View file @
232094a0
...
...
@@ -57,11 +57,11 @@ namespace zmq
public
:
inline
encoder_base_t
(
size_t
bufsize_
)
:
write_pos
(
0
),
to_write
(
0
),
next
(
NULL
),
new_msg_flag
(
false
),
bufsize
(
bufsize_
),
write_pos
(
0
),
to_write
(
0
),
next
(
nullptr
),
new_msg_flag
(
false
),
in_progress
(
NULL
)
{
buf
=
(
unsigned
char
*
)
malloc
(
bufsize_
);
...
...
src/pipe.cpp
View file @
232094a0
...
...
@@ -92,7 +92,7 @@ zmq::pipe_t::pipe_t (object_t *parent_, upipe_t *inpipe_, upipe_t *outpipe_,
sink
(
NULL
),
state
(
active
),
delay
(
true
),
routing_id
(
0
),
routing_id
(
0
),
conflate
(
conflate_
)
{
}
...
...
src/poller_base.cpp
View file @
232094a0
...
...
@@ -53,7 +53,7 @@ void zmq::poller_base_t::adjust_load (int amount_)
load
.
add
(
amount_
);
else
if
(
amount_
<
0
)
bool
reset
=
load
.
sub
(
-
amount_
);
load
.
sub
(
-
amount_
);
}
void
zmq
::
poller_base_t
::
add_timer
(
int
timeout_
,
i_poll_events
*
sink_
,
int
id_
)
...
...
src/radio.cpp
View file @
232094a0
...
...
@@ -228,8 +228,8 @@ int zmq::radio_session_t::pull_msg (msg_t *msg_)
// First frame is the group
rc
=
msg_
->
init_size
(
length
);
errno_assert
(
rc
==
0
);
msg_
->
set_flags
(
msg_t
::
more
);
errno_assert
(
rc
==
0
);
msg_
->
set_flags
(
msg_t
::
more
);
memcpy
(
msg_
->
data
(),
group
,
length
);
// Next status is the body
...
...
src/reaper.cpp
View file @
232094a0
...
...
@@ -35,8 +35,8 @@
zmq
::
reaper_t
::
reaper_t
(
class
ctx_t
*
ctx_
,
uint32_t
tid_
)
:
object_t
(
ctx_
,
tid_
),
mailbox_handle
(
NULL
),
sockets
(
0
),
mailbox_handle
(
NULL
),
terminating
(
false
)
{
poller
=
new
(
std
::
nothrow
)
poller_t
(
*
ctx_
);
...
...
src/signaler.cpp
View file @
232094a0
...
...
@@ -540,7 +540,7 @@ int zmq::signaler_t::make_fdpair (fd_t *r_, fd_t *w_)
// We don't need the listening socket anymore. Close it.
rc
=
closesocket
(
listener
);
wsa_assert
(
rc
!=
SOCKET_ERROR
);
wsa_assert
(
rc
!=
SOCKET_ERROR
);
if
(
sync
!=
NULL
)
{
// Exit the critical section.
...
...
src/socket_base.cpp
View file @
232094a0
...
...
@@ -184,6 +184,8 @@ zmq::socket_base_t::socket_base_t (ctx_t *parent_, uint32_t tid_, int sid_, bool
tag
(
0xbaddecaf
),
ctx_terminated
(
false
),
destroyed
(
false
),
poller
(
NULL
),
handle
(
NULL
),
last_tsc
(
0
),
ticks
(
0
),
rcvmore
(
false
),
...
...
@@ -191,8 +193,6 @@ zmq::socket_base_t::socket_base_t (ctx_t *parent_, uint32_t tid_, int sid_, bool
monitor_socket
(
NULL
),
monitor_events
(
0
),
thread_safe
(
thread_safe_
),
poller
(
nullptr
),
handle
(
NULL
),
reaper_signaler
(
NULL
)
{
options
.
socket_id
=
sid_
;
...
...
@@ -454,7 +454,7 @@ int zmq::socket_base_t::getsockopt (int option_, void *optval_,
EXIT_MUTEX
();
return
-
1
;
}
strncpy
(
static_cast
<
char
*>
(
optval_
),
last_endpoint
.
c_str
(),
last_endpoint
.
size
()
+
1
);
strncpy
(
static_cast
<
char
*>
(
optval_
),
last_endpoint
.
c_str
(),
last_endpoint
.
size
()
+
1
);
*
optvallen_
=
last_endpoint
.
size
()
+
1
;
EXIT_MUTEX
();
return
0
;
...
...
@@ -1503,10 +1503,9 @@ void zmq::socket_base_t::in_event ()
if
(
thread_safe
)
reaper_signaler
->
recv
();
int
rc
=
process_commands
(
0
,
false
);
EXIT_MUTEX
();
errno_assert
(
rc
==
0
);
check_destroy
();
process_commands
(
0
,
false
);
EXIT_MUTEX
();
check_destroy
();
}
void
zmq
::
socket_base_t
::
out_event
()
...
...
src/socket_poller.cpp
View file @
232094a0
...
...
@@ -34,19 +34,20 @@
zmq
::
socket_poller_t
::
socket_poller_t
()
:
tag
(
0xCAFEBABE
),
need_rebuild
(
true
),
poll_size
(
0
),
maxfd
(
0
),
use_signaler
(
false
)
use_signaler
(
false
),
poll_size
(
0
)
#if defined ZMQ_POLL_BASED_ON_POLL
,
pollfds
(
NULL
)
#elif defined ZMQ_POLL_BASED_ON_SELECT
,
maxfd
(
0
)
#endif
{
#if defined ZMQ_POLL_BASED_ON_SELECT
memset
(
&
pollset_in
,
0
,
sizeof
(
pollset_in
));
memset
(
&
pollset_out
,
0
,
sizeof
(
pollset_in
));
memset
(
&
pollset_err
,
0
,
sizeof
(
pollset_in
));
maxfd
=
0
;
memset
(
&
pollset_in
,
0
,
sizeof
(
pollset_in
));
memset
(
&
pollset_out
,
0
,
sizeof
(
pollset_in
));
memset
(
&
pollset_err
,
0
,
sizeof
(
pollset_in
));
#endif
}
...
...
src/socks_connecter.cpp
View file @
232094a0
...
...
@@ -61,11 +61,11 @@ zmq::socks_connecter_t::socks_connecter_t (class io_thread_t *io_thread_,
proxy_addr
(
proxy_addr_
),
status
(
unplugged
),
s
(
retired_fd
),
handle
(
NULL
),
handle_valid
(
false
),
delayed_start
(
delayed_start_
),
timer_started
(
false
),
session
(
session_
),
handle
(
NULL
),
handle_valid
(
false
),
timer_started
(
false
),
current_reconnect_ivl
(
options
.
reconnect_ivl
)
{
zmq_assert
(
addr
);
...
...
src/stream_engine.cpp
View file @
232094a0
...
...
@@ -61,6 +61,8 @@
zmq
::
stream_engine_t
::
stream_engine_t
(
fd_t
fd_
,
const
options_t
&
options_
,
const
std
::
string
&
endpoint_
)
:
s
(
fd_
),
as_server
(
false
),
handle
(
NULL
),
inpos
(
NULL
),
insize
(
0
),
decoder
(
NULL
),
...
...
@@ -87,8 +89,6 @@ zmq::stream_engine_t::stream_engine_t (fd_t fd_, const options_t &options_,
has_timeout_timer
(
false
),
has_heartbeat_timer
(
false
),
heartbeat_timeout
(
0
),
as_server
(
false
),
handle
(
NULL
),
socket
(
NULL
)
{
int
rc
=
tx_msg
.
init
();
...
...
@@ -1021,8 +1021,8 @@ int zmq::stream_engine_t::produce_ping_message(msg_t * msg_)
// 16-bit TTL + \4PING == 7
rc
=
msg_
->
init_size
(
7
);
errno_assert
(
rc
==
0
);
msg_
->
set_flags
(
msg_t
::
command
);
errno_assert
(
rc
==
0
);
msg_
->
set_flags
(
msg_t
::
command
);
// Copy in the command message
memcpy
(
msg_
->
data
(),
"
\4
PING"
,
5
);
...
...
@@ -1044,8 +1044,8 @@ int zmq::stream_engine_t::produce_pong_message(msg_t * msg_)
zmq_assert
(
mechanism
!=
NULL
);
rc
=
msg_
->
init_size
(
5
);
errno_assert
(
rc
==
0
);
msg_
->
set_flags
(
msg_t
::
command
);
errno_assert
(
rc
==
0
);
msg_
->
set_flags
(
msg_t
::
command
);
memcpy
(
msg_
->
data
(),
"
\4
PONG"
,
5
);
...
...
src/tcp_connecter.cpp
View file @
232094a0
...
...
@@ -67,12 +67,12 @@ zmq::tcp_connecter_t::tcp_connecter_t (class io_thread_t *io_thread_,
io_object_t
(
io_thread_
),
addr
(
addr_
),
s
(
retired_fd
),
handle
(
NULL
),
handle_valid
(
false
),
delayed_start
(
delayed_start_
),
connect_timer_started
(
false
),
reconnect_timer_started
(
false
),
session
(
session_
),
handle
(
NULL
),
current_reconnect_ivl
(
options
.
reconnect_ivl
)
{
zmq_assert
(
addr
);
...
...
src/tcp_listener.cpp
View file @
232094a0
...
...
@@ -65,7 +65,7 @@ zmq::tcp_listener_t::tcp_listener_t (io_thread_t *io_thread_,
own_t
(
io_thread_
,
options_
),
io_object_t
(
io_thread_
),
s
(
retired_fd
),
handle
(
NULL
),
handle
(
NULL
),
socket
(
socket_
)
{
}
...
...
src/thread.hpp
View file @
232094a0
...
...
@@ -55,9 +55,8 @@ namespace zmq
public
:
inline
thread_t
()
:
tfn
(
nullptr
)
,
arg
(
nullptr
)
,
descriptor
(
NULL
)
:
tfn
(
NULL
)
,
arg
(
NULL
)
{
}
...
...
src/udp_address.cpp
View file @
232094a0
...
...
@@ -48,7 +48,7 @@
#endif
zmq
::
udp_address_t
::
udp_address_t
()
:
is_mutlicast
(
false
)
:
is_mutlicast
(
false
)
{
memset
(
&
bind_address
,
0
,
sizeof
bind_address
);
memset
(
&
dest_address
,
0
,
sizeof
dest_address
);
...
...
src/udp_engine.cpp
View file @
232094a0
...
...
@@ -48,12 +48,12 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
zmq
::
udp_engine_t
::
udp_engine_t
()
:
plugged
(
false
),
fd
(
NULL
),
address
(
nullptr
),
send_enabled
(
false
),
recv_enabled
(
false
),
handle
(
NULL
),
session
(
NULL
)
fd
(
-
1
),
session
(
NULL
),
handle
(
NULL
),
address
(
NULL
),
send_enabled
(
false
),
recv_enabled
(
false
)
{
}
...
...
src/xpub.cpp
View file @
232094a0
...
...
@@ -174,7 +174,7 @@ int zmq::xpub_t::xsetsockopt (int option_, const void *optval_,
if
(
optvallen_
>
0
)
{
int
rc
=
welcome_msg
.
init_size
(
optvallen_
);
errno_assert
(
rc
==
0
);
errno_assert
(
rc
==
0
);
unsigned
char
*
data
=
(
unsigned
char
*
)
welcome_msg
.
data
();
memcpy
(
data
,
optval_
,
optvallen_
);
...
...
src/zmq.cpp
View file @
232094a0
...
...
@@ -925,9 +925,9 @@ int zmq_poll (zmq_pollitem_t *items_, int nitems_, long timeout_)
// file descriptors.
zmq_assert
(
nitems_
<=
FD_SETSIZE
);
fd_set
pollset_in
=
{
0
};
fd_set
pollset_out
=
{
0
};
fd_set
pollset_err
=
{
0
};
fd_set
pollset_in
=
{
0
};
fd_set
pollset_out
=
{
0
};
fd_set
pollset_err
=
{
0
};
zmq
::
fd_t
maxfd
=
0
;
...
...
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