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
c77dc98b
Commit
c77dc98b
authored
Apr 13, 2012
by
Sergey KHripchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
some spaces cleanups + delete unused anymore zmq::max_sockets + some minor code chages
parent
acba6bdd
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
24 additions
and
32 deletions
+24
-32
config.hpp
src/config.hpp
+1
-4
ip.cpp
src/ip.cpp
+5
-6
options.cpp
src/options.cpp
+2
-2
options.hpp
src/options.hpp
+1
-1
tcp_address.cpp
src/tcp_address.cpp
+13
-15
tcp_address.hpp
src/tcp_address.hpp
+1
-1
tcp_listener.cpp
src/tcp_listener.cpp
+0
-2
tcp_listener.hpp
src/tcp_listener.hpp
+1
-1
No files found.
src/config.hpp
View file @
c77dc98b
...
@@ -27,11 +27,8 @@ namespace zmq
...
@@ -27,11 +27,8 @@ namespace zmq
// Compile-time settings.
// Compile-time settings.
enum
enum
{
{
// Maximum number of sockets that can be opened at the same time.
max_sockets
=
512
,
// Number of new messages in message pipe needed to trigger new memory
// Number of new messages in message pipe needed to trigger new memory
// allocation. Setting this parameter to 256 decreases the impact of
// allocation. Setting this parameter to 256 decreases the impact of
// memory allocation by approximately 99.6%
// memory allocation by approximately 99.6%
...
...
src/ip.cpp
View file @
c77dc98b
...
@@ -150,14 +150,14 @@ void zmq::unblock_socket (fd_t s_)
...
@@ -150,14 +150,14 @@ void zmq::unblock_socket (fd_t s_)
int
rc
=
ioctlsocket
(
s_
,
FIONBIO
,
&
nonblock
);
int
rc
=
ioctlsocket
(
s_
,
FIONBIO
,
&
nonblock
);
wsa_assert
(
rc
!=
SOCKET_ERROR
);
wsa_assert
(
rc
!=
SOCKET_ERROR
);
#elif ZMQ_HAVE_OPENVMS
#elif ZMQ_HAVE_OPENVMS
int
nonblock
=
1
;
int
nonblock
=
1
;
int
rc
=
ioctl
(
s_
,
FIONBIO
,
&
nonblock
);
int
rc
=
ioctl
(
s_
,
FIONBIO
,
&
nonblock
);
errno_assert
(
rc
!=
-
1
);
errno_assert
(
rc
!=
-
1
);
#else
#else
int
flags
=
fcntl
(
s_
,
F_GETFL
,
0
);
int
flags
=
fcntl
(
s_
,
F_GETFL
,
0
);
if
(
flags
==
-
1
)
if
(
flags
==
-
1
)
flags
=
0
;
flags
=
0
;
int
rc
=
fcntl
(
s_
,
F_SETFL
,
flags
|
O_NONBLOCK
);
int
rc
=
fcntl
(
s_
,
F_SETFL
,
flags
|
O_NONBLOCK
);
errno_assert
(
rc
!=
-
1
);
errno_assert
(
rc
!=
-
1
);
#endif
#endif
}
}
...
@@ -179,4 +179,3 @@ void zmq::enable_ipv4_mapping (fd_t s_)
...
@@ -179,4 +179,3 @@ void zmq::enable_ipv4_mapping (fd_t s_)
#endif
#endif
#endif
#endif
}
}
src/options.cpp
View file @
c77dc98b
...
@@ -107,7 +107,7 @@ int zmq::options_t::setsockopt (int option_, const void *optval_,
...
@@ -107,7 +107,7 @@ int zmq::options_t::setsockopt (int option_, const void *optval_,
}
}
rate
=
*
((
int
*
)
optval_
);
rate
=
*
((
int
*
)
optval_
);
return
0
;
return
0
;
case
ZMQ_RECOVERY_IVL
:
case
ZMQ_RECOVERY_IVL
:
if
(
optvallen_
!=
sizeof
(
int
)
||
*
((
int
*
)
optval_
)
<
0
)
{
if
(
optvallen_
!=
sizeof
(
int
)
||
*
((
int
*
)
optval_
)
<
0
)
{
errno
=
EINVAL
;
errno
=
EINVAL
;
...
@@ -366,7 +366,7 @@ int zmq::options_t::getsockopt (int option_, void *optval_, size_t *optvallen_)
...
@@ -366,7 +366,7 @@ int zmq::options_t::getsockopt (int option_, void *optval_, size_t *optvallen_)
*
((
int
*
)
optval_
)
=
rate
;
*
((
int
*
)
optval_
)
=
rate
;
*
optvallen_
=
sizeof
(
int
);
*
optvallen_
=
sizeof
(
int
);
return
0
;
return
0
;
case
ZMQ_RECOVERY_IVL
:
case
ZMQ_RECOVERY_IVL
:
if
(
*
optvallen_
<
sizeof
(
int
))
{
if
(
*
optvallen_
<
sizeof
(
int
))
{
errno
=
EINVAL
;
errno
=
EINVAL
;
...
...
src/options.hpp
View file @
c77dc98b
...
@@ -50,7 +50,7 @@ namespace zmq
...
@@ -50,7 +50,7 @@ namespace zmq
// Socket identity
// Socket identity
unsigned
char
identity_size
;
unsigned
char
identity_size
;
unsigned
char
identity
[
256
];
unsigned
char
identity
[
256
];
// Last socket endpoint URI
// Last socket endpoint URI
std
::
string
last_endpoint
;
std
::
string
last_endpoint
;
...
...
src/tcp_address.cpp
View file @
c77dc98b
...
@@ -72,7 +72,7 @@ int zmq::tcp_address_t::resolve_nic_name (const char *nic_, bool ipv4only_)
...
@@ -72,7 +72,7 @@ int zmq::tcp_address_t::resolve_nic_name (const char *nic_, bool ipv4only_)
size_t
ifr_size
=
sizeof
(
struct
lifreq
)
*
ifn
.
lifn_count
;
size_t
ifr_size
=
sizeof
(
struct
lifreq
)
*
ifn
.
lifn_count
;
char
*
ifr
=
(
char
*
)
malloc
(
ifr_size
);
char
*
ifr
=
(
char
*
)
malloc
(
ifr_size
);
alloc_assert
(
ifr
);
alloc_assert
(
ifr
);
// Retrieve interface names.
// Retrieve interface names.
lifconf
ifc
;
lifconf
ifc
;
ifc
.
lifc_family
=
AF_INET
;
ifc
.
lifc_family
=
AF_INET
;
...
@@ -145,7 +145,7 @@ int zmq::tcp_address_t::resolve_nic_name (const char *nic_, bool ipv4only_)
...
@@ -145,7 +145,7 @@ int zmq::tcp_address_t::resolve_nic_name (const char *nic_, bool ipv4only_)
memcpy
(
&
address
.
ipv4
.
sin_addr
,
&
((
sockaddr_in
*
)
&
ifr
.
ifr_addr
)
->
sin_addr
,
memcpy
(
&
address
.
ipv4
.
sin_addr
,
&
((
sockaddr_in
*
)
&
ifr
.
ifr_addr
)
->
sin_addr
,
sizeof
(
in_addr
));
sizeof
(
in_addr
));
return
0
;
return
0
;
}
}
#elif ((defined ZMQ_HAVE_LINUX || defined ZMQ_HAVE_FREEBSD ||\
#elif ((defined ZMQ_HAVE_LINUX || defined ZMQ_HAVE_FREEBSD ||\
...
@@ -358,9 +358,9 @@ int zmq::tcp_address_t::resolve_hostname (const char *hostname_, bool ipv4only_)
...
@@ -358,9 +358,9 @@ int zmq::tcp_address_t::resolve_hostname (const char *hostname_, bool ipv4only_)
// Copy first result to output addr with hostname and service.
// Copy first result to output addr with hostname and service.
zmq_assert
((
size_t
)
(
res
->
ai_addrlen
)
<=
sizeof
(
address
));
zmq_assert
((
size_t
)
(
res
->
ai_addrlen
)
<=
sizeof
(
address
));
memcpy
(
&
address
,
res
->
ai_addr
,
res
->
ai_addrlen
);
memcpy
(
&
address
,
res
->
ai_addr
,
res
->
ai_addrlen
);
freeaddrinfo
(
res
);
freeaddrinfo
(
res
);
return
0
;
return
0
;
}
}
...
@@ -458,11 +458,9 @@ const int zmq::tcp_address_mask_t::mask () const
...
@@ -458,11 +458,9 @@ const int zmq::tcp_address_mask_t::mask () const
int
zmq
::
tcp_address_mask_t
::
resolve
(
const
char
*
name_
,
bool
ipv4only_
)
int
zmq
::
tcp_address_mask_t
::
resolve
(
const
char
*
name_
,
bool
ipv4only_
)
{
{
std
::
string
addr_str
;
std
::
string
mask_str
;
// Find '/' at the end that separates address from the cidr mask number.
// Find '/' at the end that separates address from the cidr mask number.
// Allow empty mask clause and threat it like '/32' for ipv4 or '/128' for ipv6.
// Allow empty mask clause and threat it like '/32' for ipv4 or '/128' for ipv6.
std
::
string
addr_str
,
mask_str
;
const
char
*
delimiter
=
strrchr
(
name_
,
'/'
);
const
char
*
delimiter
=
strrchr
(
name_
,
'/'
);
if
(
delimiter
!=
NULL
)
{
if
(
delimiter
!=
NULL
)
{
addr_str
.
assign
(
name_
,
delimiter
-
name_
);
addr_str
.
assign
(
name_
,
delimiter
-
name_
);
...
@@ -508,26 +506,26 @@ int zmq::tcp_address_mask_t::resolve (const char *name_, bool ipv4only_)
...
@@ -508,26 +506,26 @@ int zmq::tcp_address_mask_t::resolve (const char *name_, bool ipv4only_)
return
0
;
return
0
;
}
}
const
bool
zmq
::
tcp_address_mask_t
::
match_address
(
const
struct
sockaddr
*
ss
,
socklen_t
ss_len
)
const
const
bool
zmq
::
tcp_address_mask_t
::
match_address
(
const
struct
sockaddr
*
ss
,
const
socklen_t
ss_len
)
const
{
{
zmq_assert
(
ss
!=
NULL
&&
ss_len
>=
sizeof
(
struct
sockaddr
));
zmq_assert
(
address_mask
!=
-
1
&&
ss
!=
NULL
&&
ss_len
>=
sizeof
(
struct
sockaddr
));
if
(
ss
->
sa_family
!=
address
.
generic
.
sa_family
)
if
(
ss
->
sa_family
!=
address
.
generic
.
sa_family
)
return
false
;
return
false
;
if
(
address_mask
>
0
)
{
if
(
address_mask
>
0
)
{
int
mask
;
int
mask
;
const
int8_t
*
our_bytes
,
*
their_bytes
;
const
u
int8_t
*
our_bytes
,
*
their_bytes
;
if
(
ss
->
sa_family
==
AF_INET6
)
{
if
(
ss
->
sa_family
==
AF_INET6
)
{
zmq_assert
(
ss_len
==
sizeof
(
struct
sockaddr_in6
));
zmq_assert
(
ss_len
==
sizeof
(
struct
sockaddr_in6
));
their_bytes
=
(
const
int8_t
*
)
&
(((
const
struct
sockaddr_in6
*
)
ss
)
->
sin6_addr
);
their_bytes
=
(
const
u
int8_t
*
)
&
(((
const
struct
sockaddr_in6
*
)
ss
)
->
sin6_addr
);
our_bytes
=
(
const
int8_t
*
)
&
address
.
ipv6
.
sin6_addr
;
our_bytes
=
(
const
u
int8_t
*
)
&
address
.
ipv6
.
sin6_addr
;
mask
=
sizeof
(
struct
in6_addr
)
*
8
;
mask
=
sizeof
(
struct
in6_addr
)
*
8
;
}
}
else
{
else
{
zmq_assert
(
ss_len
==
sizeof
(
struct
sockaddr_in
));
zmq_assert
(
ss_len
==
sizeof
(
struct
sockaddr_in
));
their_bytes
=
(
const
int8_t
*
)
&
(((
const
struct
sockaddr_in
*
)
ss
)
->
sin_addr
);
their_bytes
=
(
const
u
int8_t
*
)
&
(((
const
struct
sockaddr_in
*
)
ss
)
->
sin_addr
);
our_bytes
=
(
const
int8_t
*
)
&
address
.
ipv4
.
sin_addr
;
our_bytes
=
(
const
u
int8_t
*
)
&
address
.
ipv4
.
sin_addr
;
mask
=
sizeof
(
struct
in_addr
)
*
8
;
mask
=
sizeof
(
struct
in_addr
)
*
8
;
}
}
if
(
address_mask
<
mask
)
mask
=
address_mask
;
if
(
address_mask
<
mask
)
mask
=
address_mask
;
...
@@ -538,7 +536,7 @@ const bool zmq::tcp_address_mask_t::match_address (const struct sockaddr *ss, so
...
@@ -538,7 +536,7 @@ const bool zmq::tcp_address_mask_t::match_address (const struct sockaddr *ss, so
return
false
;
return
false
;
}
}
in
t
last_byte_bits
=
(
0xffU
<<
(
8
-
(
mask
%
8
)))
&
0xffU
;
uint8_
t
last_byte_bits
=
(
0xffU
<<
(
8
-
(
mask
%
8
)))
&
0xffU
;
if
(
last_byte_bits
)
{
if
(
last_byte_bits
)
{
if
((
their_bytes
[
full_bytes
]
&
last_byte_bits
)
!=
(
our_bytes
[
full_bytes
]
&
last_byte_bits
))
if
((
their_bytes
[
full_bytes
]
&
last_byte_bits
)
!=
(
our_bytes
[
full_bytes
]
&
last_byte_bits
))
return
false
;
return
false
;
...
...
src/tcp_address.hpp
View file @
c77dc98b
...
@@ -81,7 +81,7 @@ namespace zmq
...
@@ -81,7 +81,7 @@ namespace zmq
const
int
mask
()
const
;
const
int
mask
()
const
;
const
bool
match_address
(
const
struct
sockaddr
*
s
a
,
socklen_t
ss_len
)
const
;
const
bool
match_address
(
const
struct
sockaddr
*
s
s
,
const
socklen_t
ss_len
)
const
;
private
:
private
:
...
...
src/tcp_listener.cpp
View file @
c77dc98b
...
@@ -257,7 +257,6 @@ zmq::fd_t zmq::tcp_listener_t::accept ()
...
@@ -257,7 +257,6 @@ zmq::fd_t zmq::tcp_listener_t::accept ()
if
(
!
options
.
tcp_accept_filters
.
empty
())
{
if
(
!
options
.
tcp_accept_filters
.
empty
())
{
bool
matched
=
false
;
bool
matched
=
false
;
//ss_len = 1;
for
(
options_t
::
tcp_accept_filters_t
::
size_type
i
=
0
;
i
!=
options
.
tcp_accept_filters
.
size
();
++
i
)
{
for
(
options_t
::
tcp_accept_filters_t
::
size_type
i
=
0
;
i
!=
options
.
tcp_accept_filters
.
size
();
++
i
)
{
if
(
options
.
tcp_accept_filters
[
i
].
match_address
((
struct
sockaddr
*
)
&
ss
,
ss_len
))
{
if
(
options
.
tcp_accept_filters
[
i
].
match_address
((
struct
sockaddr
*
)
&
ss
,
ss_len
))
{
matched
=
true
;
matched
=
true
;
...
@@ -278,4 +277,3 @@ zmq::fd_t zmq::tcp_listener_t::accept ()
...
@@ -278,4 +277,3 @@ zmq::fd_t zmq::tcp_listener_t::accept ()
return
sock
;
return
sock
;
}
}
src/tcp_listener.hpp
View file @
c77dc98b
...
@@ -44,7 +44,7 @@ namespace zmq
...
@@ -44,7 +44,7 @@ namespace zmq
// Set address to listen on.
// Set address to listen on.
int
set_address
(
const
char
*
addr_
);
int
set_address
(
const
char
*
addr_
);
// Get the bound address for use with wildcard
// Get the bound address for use with wildcard
int
get_address
(
std
::
string
&
addr_
);
int
get_address
(
std
::
string
&
addr_
);
...
...
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