Lines Matching refs:ip
19 char ip[255]; in test_parse_ip_addr() local
22 snprintf(ip, 255, "%s", "192.168.0.1"); in test_parse_ip_addr()
23 rc = spdk_parse_ip_addr(ip, &host, &port); in test_parse_ip_addr()
31 snprintf(ip, 255, "%s", "123.456.789.0:5520"); in test_parse_ip_addr()
32 rc = spdk_parse_ip_addr(ip, &host, &port); in test_parse_ip_addr()
42 snprintf(ip, 255, "%s", "[2001:db8:85a3:8d3:1319:8a2e:370:7348]"); in test_parse_ip_addr()
43 rc = spdk_parse_ip_addr(ip, &host, &port); in test_parse_ip_addr()
51 snprintf(ip, 255, "%s", "[2001:db8:85a3:8d3:1319:8a2e:370:7348]:443"); in test_parse_ip_addr()
52 rc = spdk_parse_ip_addr(ip, &host, &port); in test_parse_ip_addr()
62 snprintf(ip, 255, "%s", "[2001:db8:85a3:8d3:1319:8a2e:370:7348]:"); in test_parse_ip_addr()
63 rc = spdk_parse_ip_addr(ip, &host, &port); in test_parse_ip_addr()