2011-10-11 00:09:03 +00:00
|
|
|
/*
|
2014-04-25 23:45:21 +00:00
|
|
|
* Copyright (C) 2011, 2014 Internet Systems Consortium, Inc. ("ISC")
|
2011-10-11 00:09:03 +00:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or 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 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*! \file */
|
|
|
|
|
2011-10-11 00:25:12 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
2011-10-11 00:09:03 +00:00
|
|
|
#include <dns/clientinfo.h>
|
|
|
|
|
|
|
|
void
|
|
|
|
dns_clientinfomethods_init(dns_clientinfomethods_t *methods,
|
|
|
|
dns_clientinfo_sourceip_t sourceip)
|
|
|
|
{
|
|
|
|
methods->version = DNS_CLIENTINFOMETHODS_VERSION;
|
|
|
|
methods->age = DNS_CLIENTINFOMETHODS_AGE;
|
|
|
|
methods->sourceip = sourceip;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2014-04-25 13:06:30 -07:00
|
|
|
dns_clientinfo_init(dns_clientinfo_t *ci, void *data, void *versionp) {
|
2011-10-11 00:09:03 +00:00
|
|
|
ci->version = DNS_CLIENTINFO_VERSION;
|
|
|
|
ci->data = data;
|
2014-04-25 13:06:30 -07:00
|
|
|
ci->dbversion = versionp;
|
2011-10-11 00:09:03 +00:00
|
|
|
}
|