2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

enable multicast address check tests

This commit is contained in:
Michael Graff
2000-06-16 22:21:34 +00:00
parent a802ec87b6
commit 0111b7c5e1
4 changed files with 9 additions and 6 deletions

View File

@@ -37,7 +37,7 @@ LWRESDEPLIBS = ../../lib/lwres/liblwres.@A@
LIBS = @LIBS@ LIBS = @LIBS@
SUBDIRS = db dst master mem names rbt sockaddr tasks timers system SUBDIRS = db dst master mem names net rbt sockaddr tasks timers system
# Alphabetically # Alphabetically
TARGETS = TARGETS =

View File

@@ -15,7 +15,7 @@
* SOFTWARE. * SOFTWARE.
*/ */
/* $Id: netaddr_multicast.c,v 1.1 2000/06/16 22:17:11 explorer Exp $ */ /* $Id: netaddr_multicast.c,v 1.2 2000/06/16 22:21:13 explorer Exp $ */
#include <isc/string.h> #include <isc/string.h>
#include <isc/types.h> #include <isc/types.h>
@@ -44,9 +44,9 @@ static addr_t addrs[] = {
}; };
#define NADDRS (sizeof(addrs) / sizeof(addr_t)) #define NADDRS (sizeof(addrs) / sizeof(addr_t))
isc_result_t to_netaddr(addr_t *, isc_netaddr_t *); static isc_result_t to_netaddr(addr_t *, isc_netaddr_t *);
isc_result_t static isc_result_t
to_netaddr(addr_t *addr, isc_netaddr_t *na) { to_netaddr(addr_t *addr, isc_netaddr_t *na) {
int r; int r;
struct in_addr in; struct in_addr in;

4
configure vendored
View File

@@ -1,6 +1,6 @@
#! /bin/sh #! /bin/sh
# From configure.in Revision: 1.148 # From configure.in Revision: 1.149
@@ -4315,6 +4315,7 @@ trap 'rm -fr `echo "make/rules
bin/tests/timers/Makefile bin/tests/timers/Makefile
bin/tests/dst/Makefile bin/tests/dst/Makefile
bin/tests/mem/Makefile bin/tests/mem/Makefile
bin/tests/net/Makefile
bin/tests/sockaddr/Makefile bin/tests/sockaddr/Makefile
bin/tests/system/Makefile bin/tests/system/Makefile
bin/tests/system/conf.sh bin/tests/system/conf.sh
@@ -4546,6 +4547,7 @@ CONFIG_FILES=\${CONFIG_FILES-"make/rules
bin/tests/timers/Makefile bin/tests/timers/Makefile
bin/tests/dst/Makefile bin/tests/dst/Makefile
bin/tests/mem/Makefile bin/tests/mem/Makefile
bin/tests/net/Makefile
bin/tests/sockaddr/Makefile bin/tests/sockaddr/Makefile
bin/tests/system/Makefile bin/tests/system/Makefile
bin/tests/system/conf.sh bin/tests/system/conf.sh

View File

@@ -13,7 +13,7 @@ dnl PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
dnl ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS dnl ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
dnl SOFTWARE. dnl SOFTWARE.
AC_REVISION($Revision: 1.149 $) AC_REVISION($Revision: 1.150 $)
AC_PREREQ(2.13) AC_PREREQ(2.13)
@@ -1027,6 +1027,7 @@ AC_OUTPUT(
bin/tests/timers/Makefile bin/tests/timers/Makefile
bin/tests/dst/Makefile bin/tests/dst/Makefile
bin/tests/mem/Makefile bin/tests/mem/Makefile
bin/tests/net/Makefile
bin/tests/sockaddr/Makefile bin/tests/sockaddr/Makefile
bin/tests/system/Makefile bin/tests/system/Makefile
bin/tests/system/conf.sh bin/tests/system/conf.sh