/*
* Copyright (C) 2000, 2001, 2004, 2007, 2015, 2016 Internet Systems Consortium, Inc. ("ISC")
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
/* $Id: netaddr_multicast.c,v 1.12 2007/06/19 23:47:00 tbox Exp $ */
#include <config.h>
#include <stdlib.h>
#include <stdio.h>
#include "driver.h"
typedef struct {
int family;
const char *addr;
} t_addr_t;
};
static isc_result_t
int r;
case AF_INET:
if (r != 1)
return (ISC_R_FAILURE);
break;
case AF_INET6:
if (r != 1)
return (ISC_R_FAILURE);
break;
default:
return (ISC_R_UNEXPECTED);
}
return (ISC_R_SUCCESS);
}
netaddr_multicast(void) {
unsigned int n_fail;
unsigned int i;
n_fail = 0;
for (i = 0; i < NADDRS; i++) {
if (result != ISC_R_SUCCESS) {
printf("I:to_netaddr() returned %s on item %u\n",
isc_result_totext(result), i);
return (UNKNOWN);
}
printf("I:%s is%s multicast (PASSED)\n",
} else {
printf("I:%s is%s multicast (FAILED)\n",
n_fail++;
}
}
if (n_fail > 0)
return (FAILED);
return (PASSED);
}