adb_test.c revision 4e68c7c87c30c28490c92937adc112dca5b5d5ae
/*
* Copyright (C) 2004, 2005, 2007, 2009, 2011 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 1999-2001 Internet Software Consortium.
*
* 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 ISC DISCLAIMS ALL WARRANTIES WITH
* REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS. IN NO EVENT SHALL ISC 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.
*/
/* $Id: adb_test.c,v 1.73 2011/08/30 23:46:51 tbox Exp $ */
/*! \file */
#include <config.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <dns/dispatch.h>
struct client {
const char *target;
};
static isc_mempool_t *cmp;
static isc_logconfig_t *lcfg;
static isc_taskmgr_t *taskmgr;
static isc_socketmgr_t *socketmgr;
static isc_timermgr_t *timermgr;
static dns_dispatchmgr_t *dispatchmgr;
static dns_view_t *view;
static isc_mutex_t client_lock;
static isc_stdtime_t now;
static void
static void
if (result == ISC_R_SUCCESS)
return;
exit(1);
}
static client_t *
new_client(void) {
return (client);
}
static void
free_client(client_t **c) {
client = *c;
*c = NULL;
}
static inline void
CLOCK(void) {
}
static inline void
CUNLOCK(void) {
}
static void
printf("NAME %s:\n\tTask %p got event %p type %08x from %p, client %p\n\terr4: %s err6: %s\n",
isc_event_free(&ev);
CLOCK();
CUNLOCK();
}
static void
create_managers(void) {
dispatchmgr = NULL;
}
static void
create_view(void) {
/*
* View.
*/
/*
* Cache.
*/
{
unsigned int attrs;
== ISC_R_SUCCESS);
== ISC_R_SUCCESS);
timermgr, 0,
}
}
static void
unsigned char namedata[256];
isc_buffer_t t, namebuf;
unsigned int options;
client = new_client();
options = 0;
if (result != ISC_R_SUCCESS)
} else {
printf("NAME %s: err4 %s, err6 %s\n",
}
}
int
result = isc_app_start();
/*
* EVERYTHING needs a memory context.
*/
== ISC_R_SUCCESS);
/*
* Create and install the default channel.
*/
/*
* Set the initial debug level.
*/
create_view();
/*
* Lock the entire client list here. This will cause all events
* for found names to block as well.
*/
CLOCK();
lookup("www.firstcard.com.");
lookup("dns04.flame.org.");
CUNLOCK();
sleep(10);
sleep(10);
CLOCK();
CUNLOCK();
sleep(20);
isc_app_run();
return (0);
}