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
dd1c87f9
Commit
dd1c87f9
authored
May 15, 2018
by
Simon Giesecke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Problem: type mismatch errors/warnings in Windows build
Solution: fix types
parent
10cb710a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
11 deletions
+20
-11
test_radio_dish.cpp
tests/test_radio_dish.cpp
+12
-11
testutil.hpp
tests/testutil.hpp
+8
-0
No files found.
tests/test_radio_dish.cpp
View file @
dd1c87f9
...
...
@@ -280,8 +280,8 @@ union sa_u
static
bool
is_multicast_available
(
int
ipv6_
)
{
int
family
=
ipv6_
?
AF_INET6
:
AF_INET
;
int
bind_sock
=
-
1
;
int
send_sock
=
-
1
;
fd_t
bind_sock
=
retired_fd
;
fd_t
send_sock
=
retired_fd
;
int
port
=
5555
;
bool
success
=
false
;
const
char
*
msg
=
"it works"
;
...
...
@@ -357,15 +357,15 @@ static bool is_multicast_available (int ipv6_)
mreq
.
ipv6mr_multiaddr
=
mcast_ipv6
->
sin6_addr
;
mreq
.
ipv6mr_interface
=
0
;
rc
=
setsockopt
(
bind_sock
,
IPPROTO_IPV6
,
IPV6_ADD_MEMBERSHIP
,
&
mreq
,
sizeof
(
mreq
));
rc
=
setsockopt
(
bind_sock
,
IPPROTO_IPV6
,
IPV6_ADD_MEMBERSHIP
,
as_setsockopt_opt_t
(
&
mreq
),
sizeof
(
mreq
));
if
(
rc
<
0
)
{
goto
out
;
}
int
loop
=
1
;
rc
=
setsockopt
(
send_sock
,
IPPROTO_IPV6
,
IPV6_MULTICAST_LOOP
,
&
loop
,
sizeof
(
loop
));
rc
=
setsockopt
(
send_sock
,
IPPROTO_IPV6
,
IPV6_MULTICAST_LOOP
,
as_setsockopt_opt_t
(
&
loop
),
sizeof
(
loop
));
if
(
rc
<
0
)
{
goto
out
;
}
...
...
@@ -376,15 +376,15 @@ static bool is_multicast_available (int ipv6_)
mreq
.
imr_multiaddr
=
mcast_ipv4
->
sin_addr
;
mreq
.
imr_interface
.
s_addr
=
htonl
(
INADDR_ANY
);
rc
=
setsockopt
(
bind_sock
,
IPPROTO_IP
,
IP_ADD_MEMBERSHIP
,
&
mreq
,
sizeof
(
mreq
));
rc
=
setsockopt
(
bind_sock
,
IPPROTO_IP
,
IP_ADD_MEMBERSHIP
,
as_setsockopt_opt_t
(
&
mreq
),
sizeof
(
mreq
));
if
(
rc
<
0
)
{
goto
out
;
}
int
loop
=
1
;
rc
=
setsockopt
(
send_sock
,
IPPROTO_IP
,
IP_MULTICAST_LOOP
,
&
loop
,
sizeof
(
loop
));
rc
=
setsockopt
(
send_sock
,
IPPROTO_IP
,
IP_MULTICAST_LOOP
,
as_setsockopt_opt_t
(
&
loop
),
sizeof
(
loop
));
if
(
rc
<
0
)
{
goto
out
;
}
...
...
@@ -392,7 +392,8 @@ static bool is_multicast_available (int ipv6_)
msleep
(
SETTLE_TIME
);
rc
=
sendto
(
send_sock
,
msg
,
strlen
(
msg
),
0
,
&
mcast
.
generic
,
sl
);
rc
=
sendto
(
send_sock
,
msg
,
static_cast
<
socklen_t
>
(
strlen
(
msg
)),
0
,
&
mcast
.
generic
,
sl
);
if
(
rc
<
0
)
{
goto
out
;
}
...
...
tests/testutil.hpp
View file @
dd1c87f9
...
...
@@ -92,6 +92,10 @@
#ifdef ZMQ_HAVE_WINDOWS
#define close closesocket
typedef
int
socket_size_t
;
const
char
*
as_setsockopt_opt_t
(
const
void
*
opt
)
{
return
static_cast
<
const
char
*>
(
opt
);
}
#if defined _MSC_VER && _MSC_VER <= 1400
typedef
UINT_PTR
fd_t
;
enum
...
...
@@ -107,6 +111,10 @@ enum
#endif
#else
typedef
size_t
socket_size_t
;
const
void
*
as_setsockopt_opt_t
(
const
void
*
opt
)
{
return
opt
;
}
typedef
int
fd_t
;
enum
{
...
...
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