/*
* Copyright (c) 2013 Proofpoint, Inc. and its suppliers.
* All rights reserved.
*
* By using this file, you agree to the terms and conditions set
* forth in the LICENSE file which can be found at the top level of
* the sendmail distribution.
*/
#if NETINET6
static char *ipv6f[] = {
"1234:5678:9abc:def0:fedc:dead:f00f:101",
"1080:0:0:0:8:800:200c:417a",
"ff01:0:0:0:0:0:0:43",
"0:0:0:0:0:0:0:1",
"1:0:0:0:0:0:0:1",
"0:1:0:0:0:0:0:1",
"0:0:1:0:0:0:0:1",
"0:0:0:1:0:0:0:1",
"0:0:0:0:1:0:0:1",
"0:0:0:0:0:1:0:1",
"0:0:0:0:0:0:1:1",
"1:a:b:c:d:e:f:9",
"0:0:0:0:0:0:0:0",
};
static void
test()
{
int i, r;
SM_TEST(r == 1);
}
}
int
int argc;
char **argv;
{
test();
return sm_test_end();
}
#else /* NETINET6 */
int
int argc;
char **argv;
{
return 0;
}
#endif /* NETINET6 */