Skip to content

Commit

Permalink
Fix some compile warnings
Browse files Browse the repository at this point in the history
Signed-off-by: Saikrishna Arcot <[email protected]>
  • Loading branch information
saiarcot895 authored and kellyyeh committed Oct 7, 2022
1 parent 9ba8014 commit a345c12
Showing 1 changed file with 9 additions and 15 deletions.
24 changes: 9 additions & 15 deletions test/MockRelay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -205,10 +205,10 @@ TEST(parsePacket, relay_forward)
TEST(sock, sock_open)
{
sock_fprog ether_relay_fprog = {0,{}};
int index = NULL;
int index = 0;
if (!index) {
errno = EINVAL;
}
errno = EINVAL;
}
EXPECT_EQ(errno, EINVAL);
openSockCount++;
int filter = sock_open(index, &ether_relay_fprog);
Expand Down Expand Up @@ -241,8 +241,7 @@ TEST(helper, send_udp)

TEST(prepareConfig, prepare_relay_config)
{
struct relay_config config;
memset(&config, 0, sizeof(config));
struct relay_config config{};
config.is_option_79 = true;

config.link_address.sin6_addr.__in6_u.__u6_addr8[15] = 0x01;
Expand Down Expand Up @@ -329,8 +328,7 @@ TEST(relay, relay_client) {
};
int32_t msg_len = sizeof(msg);

struct relay_config config;
memset(&config, 0, sizeof(config));
struct relay_config config{};
config.is_option_79 = true;
std::vector<std::string> servers;
servers.push_back("fc02:2000::1");
Expand Down Expand Up @@ -426,8 +424,7 @@ TEST(relay, relay_relay_forw) {
int32_t msg_len = sizeof(msg);


relay_config config;
memset(&config, 0, sizeof(config));
relay_config config{};
config.link_address.sin6_addr.__in6_u.__u6_addr8[15] = 0x02;
std::vector<std::string> servers;
servers.push_back("fc02:2000::1");
Expand Down Expand Up @@ -540,8 +537,7 @@ TEST(relay, relay_relay_reply) {
};
int32_t msg_len = sizeof(msg);

struct relay_config config;
memset(&config, 0, sizeof(config));
struct relay_config config{};
config.is_option_79 = true;

config.link_address.sin6_addr.__in6_u.__u6_addr8[15] = 0x01;
Expand Down Expand Up @@ -629,8 +625,7 @@ TEST(relay, callback) {
evutil_socket_t fd = 1;
short event = 1;

struct relay_config config;
memset(&config, 0, sizeof(config));
struct relay_config config{};
config.is_option_79 = true;

config.link_address.sin6_addr.__in6_u.__u6_addr8[15] = 0x01;
Expand Down Expand Up @@ -686,8 +681,7 @@ TEST(relay, signal_callback) {

TEST(relay, dhcp6relay_stop) {
int filter = 1;
struct relay_config config;
memset(&config, 0, sizeof(config));
struct relay_config config{};
struct event_base *base = event_base_new();
struct event *mock_event;
event_new(base, filter, EV_READ|EV_PERSIST, callback, &config);
Expand Down

0 comments on commit a345c12

Please sign in to comment.