Searched refs:exp_addr (Results 1 – 1 of 1) sorted by relevance
/qemu/tests/unit/ |
H A D | test-util-sockets.c | 336 InetSocketAddress *exp_addr, bool success) in inet_parse_test_helper() argument 352 if (exp_addr != NULL) { in inet_parse_test_helper() 353 g_assert_cmpstr(addr.host, ==, exp_addr->host); in inet_parse_test_helper() 354 g_assert_cmpstr(addr.port, ==, exp_addr->port); in inet_parse_test_helper() 356 g_assert_cmpint(addr.has_numeric, ==, exp_addr->has_numeric); in inet_parse_test_helper() 357 g_assert_cmpint(addr.numeric, ==, exp_addr->numeric); in inet_parse_test_helper() 358 g_assert_cmpint(addr.has_to, ==, exp_addr->has_to); in inet_parse_test_helper() 359 g_assert_cmpint(addr.to, ==, exp_addr->to); in inet_parse_test_helper() 360 g_assert_cmpint(addr.has_ipv4, ==, exp_addr->has_ipv4); in inet_parse_test_helper() 361 g_assert_cmpint(addr.ipv4, ==, exp_addr->ipv4); in inet_parse_test_helper() [all …]
|