adb_test.c revision f00d96a15cdd11e764437f9359e67328631caaea
/*
* Copyright (C) 1998, 1999 Internet Software Consortium.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
* ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
* CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
* ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
* SOFTWARE.
*/
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <isc/assertions.h>
#include <isc/sockaddr.h>
static void fatal(char *, ...);
static inline void check_result(isc_result_t, char *);
static void
{
exit(1);
}
static inline void
{
if (result != ISC_R_SUCCESS)
}
static void
{
printf("Task %p got event %p type %08x from %p, arg %p\n",
isc_event_free(&ev);
}
int
{
isc_buffer_t t, namebuf;
unsigned char namestorage1[512];
unsigned char namestorage2[512];
(void)argc;
(void)argv;
result = isc_app_start();
/*
* EVERYTHING needs a memory context.
*/
/*
* The task manager is independent (other than memory context)
*/
/*
* Create the address database.
*/
#define NAME1 "nonexistant.flame.org."
#define NAME2 "badname.isc.org."
&namebuf);
&namebuf);
/*
* Store this address for this name.
*/
printf("Added 1.2.3.4\n");
printf("Added 1.2.3.5\n");
printf("Added 1.2.3.6\n");
printf("Added 1.2.3.5\n");
/*
* Try to look up a name or two.
*/
/*
* Mark one entry as lame, then look this name up again.
*/
/*
* look it up again
*/
/*
* delete one of the names, and kill the adb
*/
isc_app_run();
return (0);
}