prefix names
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@24879 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -78,7 +78,7 @@ static struct stot{
|
|||||||
int _resolve_debug = 0;
|
int _resolve_debug = 0;
|
||||||
|
|
||||||
int ROKEN_LIB_FUNCTION
|
int ROKEN_LIB_FUNCTION
|
||||||
dns_string_to_type(const char *name)
|
rk_dns_string_to_type(const char *name)
|
||||||
{
|
{
|
||||||
struct stot *p = stot;
|
struct stot *p = stot;
|
||||||
for(p = stot; p->name; p++)
|
for(p = stot; p->name; p++)
|
||||||
@@ -88,7 +88,7 @@ dns_string_to_type(const char *name)
|
|||||||
}
|
}
|
||||||
|
|
||||||
const char * ROKEN_LIB_FUNCTION
|
const char * ROKEN_LIB_FUNCTION
|
||||||
dns_type_to_string(int type)
|
rk_dns_type_to_string(int type)
|
||||||
{
|
{
|
||||||
struct stot *p = stot;
|
struct stot *p = stot;
|
||||||
for(p = stot; p->name; p++)
|
for(p = stot; p->name; p++)
|
||||||
@@ -100,7 +100,7 @@ dns_type_to_string(int type)
|
|||||||
#if (defined(HAVE_RES_SEARCH) || defined(HAVE_RES_NSEARCH)) && defined(HAVE_DN_EXPAND)
|
#if (defined(HAVE_RES_SEARCH) || defined(HAVE_RES_NSEARCH)) && defined(HAVE_DN_EXPAND)
|
||||||
|
|
||||||
static void
|
static void
|
||||||
dns_free_rr(struct resource_record *rr)
|
dns_free_rr(struct rk_resource_record *rr)
|
||||||
{
|
{
|
||||||
if(rr->domain)
|
if(rr->domain)
|
||||||
free(rr->domain);
|
free(rr->domain);
|
||||||
@@ -110,13 +110,13 @@ dns_free_rr(struct resource_record *rr)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void ROKEN_LIB_FUNCTION
|
void ROKEN_LIB_FUNCTION
|
||||||
dns_free_data(struct dns_reply *r)
|
rk_dns_free_data(struct rk_dns_reply *r)
|
||||||
{
|
{
|
||||||
struct resource_record *rr;
|
struct rk_resource_record *rr;
|
||||||
if(r->q.domain)
|
if(r->q.domain)
|
||||||
free(r->q.domain);
|
free(r->q.domain);
|
||||||
for(rr = r->head; rr;){
|
for(rr = r->head; rr;){
|
||||||
struct resource_record *tmp = rr;
|
struct rk_resource_record *tmp = rr;
|
||||||
rr = rr->next;
|
rr = rr->next;
|
||||||
dns_free_rr(tmp);
|
dns_free_rr(tmp);
|
||||||
}
|
}
|
||||||
@@ -125,9 +125,9 @@ dns_free_data(struct dns_reply *r)
|
|||||||
|
|
||||||
static int
|
static int
|
||||||
parse_record(const unsigned char *data, const unsigned char *end_data,
|
parse_record(const unsigned char *data, const unsigned char *end_data,
|
||||||
const unsigned char **pp, struct resource_record **ret_rr)
|
const unsigned char **pp, struct rk_resource_record **ret_rr)
|
||||||
{
|
{
|
||||||
struct resource_record *rr;
|
struct rk_resource_record *rr;
|
||||||
int type, class, ttl;
|
int type, class, ttl;
|
||||||
unsigned size;
|
unsigned size;
|
||||||
int status;
|
int status;
|
||||||
@@ -401,7 +401,7 @@ parse_record(const unsigned char *data, const unsigned char *end_data,
|
|||||||
#ifndef TEST_RESOLVE
|
#ifndef TEST_RESOLVE
|
||||||
static
|
static
|
||||||
#endif
|
#endif
|
||||||
struct dns_reply*
|
struct rk_dns_reply*
|
||||||
parse_reply(const unsigned char *data, size_t len)
|
parse_reply(const unsigned char *data, size_t len)
|
||||||
{
|
{
|
||||||
const unsigned char *p;
|
const unsigned char *p;
|
||||||
@@ -409,8 +409,8 @@ parse_reply(const unsigned char *data, size_t len)
|
|||||||
int i;
|
int i;
|
||||||
char host[MAXDNAME];
|
char host[MAXDNAME];
|
||||||
const unsigned char *end_data = data + len;
|
const unsigned char *end_data = data + len;
|
||||||
struct dns_reply *r;
|
struct rk_dns_reply *r;
|
||||||
struct resource_record **rr;
|
struct rk_resource_record **rr;
|
||||||
|
|
||||||
r = calloc(1, sizeof(*r));
|
r = calloc(1, sizeof(*r));
|
||||||
if (r == NULL)
|
if (r == NULL)
|
||||||
@@ -449,16 +449,16 @@ parse_reply(const unsigned char *data, size_t len)
|
|||||||
}
|
}
|
||||||
status = dn_expand(data, end_data, p, host, sizeof(host));
|
status = dn_expand(data, end_data, p, host, sizeof(host));
|
||||||
if(status < 0){
|
if(status < 0){
|
||||||
dns_free_data(r);
|
rk_dns_free_data(r);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
r->q.domain = strdup(host);
|
r->q.domain = strdup(host);
|
||||||
if(r->q.domain == NULL) {
|
if(r->q.domain == NULL) {
|
||||||
dns_free_data(r);
|
rk_dns_free_data(r);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
if (p + status + 4 > end_data) {
|
if (p + status + 4 > end_data) {
|
||||||
dns_free_data(r);
|
rk_dns_free_data(r);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
p += status;
|
p += status;
|
||||||
@@ -470,21 +470,21 @@ parse_reply(const unsigned char *data, size_t len)
|
|||||||
rr = &r->head;
|
rr = &r->head;
|
||||||
for(i = 0; i < r->h.ancount; i++) {
|
for(i = 0; i < r->h.ancount; i++) {
|
||||||
if(parse_record(data, end_data, &p, rr) != 0) {
|
if(parse_record(data, end_data, &p, rr) != 0) {
|
||||||
dns_free_data(r);
|
rk_dns_free_data(r);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
rr = &(*rr)->next;
|
rr = &(*rr)->next;
|
||||||
}
|
}
|
||||||
for(i = 0; i < r->h.nscount; i++) {
|
for(i = 0; i < r->h.nscount; i++) {
|
||||||
if(parse_record(data, end_data, &p, rr) != 0) {
|
if(parse_record(data, end_data, &p, rr) != 0) {
|
||||||
dns_free_data(r);
|
rk_dns_free_data(r);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
rr = &(*rr)->next;
|
rr = &(*rr)->next;
|
||||||
}
|
}
|
||||||
for(i = 0; i < r->h.arcount; i++) {
|
for(i = 0; i < r->h.arcount; i++) {
|
||||||
if(parse_record(data, end_data, &p, rr) != 0) {
|
if(parse_record(data, end_data, &p, rr) != 0) {
|
||||||
dns_free_data(r);
|
rk_dns_free_data(r);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
rr = &(*rr)->next;
|
rr = &(*rr)->next;
|
||||||
@@ -501,10 +501,10 @@ parse_reply(const unsigned char *data, size_t len)
|
|||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static struct dns_reply *
|
static struct rk_dns_reply *
|
||||||
dns_lookup_int(const char *domain, int rr_class, int rr_type)
|
dns_lookup_int(const char *domain, int rr_class, int rr_type)
|
||||||
{
|
{
|
||||||
struct dns_reply *r;
|
struct rk_dns_reply *r;
|
||||||
unsigned char *reply = NULL;
|
unsigned char *reply = NULL;
|
||||||
int size;
|
int size;
|
||||||
int len;
|
int len;
|
||||||
@@ -534,7 +534,7 @@ dns_lookup_int(const char *domain, int rr_class, int rr_type)
|
|||||||
_res.options |= RES_DEBUG;
|
_res.options |= RES_DEBUG;
|
||||||
#endif
|
#endif
|
||||||
fprintf(stderr, "dns_lookup(%s, %d, %s), buffer size %d\n", domain,
|
fprintf(stderr, "dns_lookup(%s, %d, %s), buffer size %d\n", domain,
|
||||||
rr_class, dns_type_to_string(rr_type), size);
|
rr_class, rk_dns_type_to_string(rr_type), size);
|
||||||
}
|
}
|
||||||
reply = malloc(size);
|
reply = malloc(size);
|
||||||
if (reply == NULL) {
|
if (reply == NULL) {
|
||||||
@@ -553,7 +553,7 @@ dns_lookup_int(const char *domain, int rr_class, int rr_type)
|
|||||||
_res.options = old_options;
|
_res.options = old_options;
|
||||||
#endif
|
#endif
|
||||||
fprintf(stderr, "dns_lookup(%s, %d, %s) --> %d\n",
|
fprintf(stderr, "dns_lookup(%s, %d, %s) --> %d\n",
|
||||||
domain, rr_class, dns_type_to_string(rr_type), len);
|
domain, rr_class, rk_dns_type_to_string(rr_type), len);
|
||||||
}
|
}
|
||||||
if (len < 0) {
|
if (len < 0) {
|
||||||
#ifdef HAVE_RES_NSEARCH
|
#ifdef HAVE_RES_NSEARCH
|
||||||
@@ -573,12 +573,12 @@ dns_lookup_int(const char *domain, int rr_class, int rr_type)
|
|||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct dns_reply * ROKEN_LIB_FUNCTION
|
struct rk_dns_reply * ROKEN_LIB_FUNCTION
|
||||||
dns_lookup(const char *domain, const char *type_name)
|
rk_dns_lookup(const char *domain, const char *type_name)
|
||||||
{
|
{
|
||||||
int type;
|
int type;
|
||||||
|
|
||||||
type = dns_string_to_type(type_name);
|
type = rk_dns_string_to_type(type_name);
|
||||||
if(type == -1) {
|
if(type == -1) {
|
||||||
if(_resolve_debug)
|
if(_resolve_debug)
|
||||||
fprintf(stderr, "dns_lookup: unknown resource type: `%s'\n",
|
fprintf(stderr, "dns_lookup: unknown resource type: `%s'\n",
|
||||||
@@ -591,7 +591,7 @@ dns_lookup(const char *domain, const char *type_name)
|
|||||||
static int
|
static int
|
||||||
compare_srv(const void *a, const void *b)
|
compare_srv(const void *a, const void *b)
|
||||||
{
|
{
|
||||||
const struct resource_record *const* aa = a, *const* bb = b;
|
const struct rk_resource_record *const* aa = a, *const* bb = b;
|
||||||
|
|
||||||
if((*aa)->u.srv->priority == (*bb)->u.srv->priority)
|
if((*aa)->u.srv->priority == (*bb)->u.srv->priority)
|
||||||
return ((*aa)->u.srv->weight - (*bb)->u.srv->weight);
|
return ((*aa)->u.srv->weight - (*bb)->u.srv->weight);
|
||||||
@@ -604,10 +604,10 @@ compare_srv(const void *a, const void *b)
|
|||||||
|
|
||||||
/* try to rearrange the srv-records by the algorithm in RFC2782 */
|
/* try to rearrange the srv-records by the algorithm in RFC2782 */
|
||||||
void ROKEN_LIB_FUNCTION
|
void ROKEN_LIB_FUNCTION
|
||||||
dns_srv_order(struct dns_reply *r)
|
rk_dns_srv_order(struct rk_dns_reply *r)
|
||||||
{
|
{
|
||||||
struct resource_record **srvs, **ss, **headp;
|
struct rk_resource_record **srvs, **ss, **headp;
|
||||||
struct resource_record *rr;
|
struct rk_resource_record *rr;
|
||||||
int num_srv = 0;
|
int num_srv = 0;
|
||||||
|
|
||||||
#if defined(HAVE_INITSTATE) && defined(HAVE_SETSTATE)
|
#if defined(HAVE_INITSTATE) && defined(HAVE_SETSTATE)
|
||||||
@@ -648,7 +648,7 @@ dns_srv_order(struct dns_reply *r)
|
|||||||
|
|
||||||
for(ss = srvs; ss < srvs + num_srv; ) {
|
for(ss = srvs; ss < srvs + num_srv; ) {
|
||||||
int sum, rnd, count;
|
int sum, rnd, count;
|
||||||
struct resource_record **ee, **tt;
|
struct rk_resource_record **ee, **tt;
|
||||||
/* find the last record with the same priority and count the
|
/* find the last record with the same priority and count the
|
||||||
sum of all weights */
|
sum of all weights */
|
||||||
for(sum = 0, tt = ss; tt < srvs + num_srv; tt++) {
|
for(sum = 0, tt = ss; tt < srvs + num_srv; tt++) {
|
||||||
@@ -693,19 +693,19 @@ dns_srv_order(struct dns_reply *r)
|
|||||||
|
|
||||||
#else /* NOT defined(HAVE_RES_SEARCH) && defined(HAVE_DN_EXPAND) */
|
#else /* NOT defined(HAVE_RES_SEARCH) && defined(HAVE_DN_EXPAND) */
|
||||||
|
|
||||||
struct dns_reply * ROKEN_LIB_FUNCTION
|
struct rk_dns_reply * ROKEN_LIB_FUNCTION
|
||||||
dns_lookup(const char *domain, const char *type_name)
|
rk_dns_lookup(const char *domain, const char *type_name)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
void ROKEN_LIB_FUNCTION
|
void ROKEN_LIB_FUNCTION
|
||||||
dns_free_data(struct dns_reply *r)
|
rk_dns_free_data(struct rk_dns_reply *r)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
void ROKEN_LIB_FUNCTION
|
void ROKEN_LIB_FUNCTION
|
||||||
dns_srv_order(struct dns_reply *r)
|
rk_dns_srv_order(struct rk_dns_reply *r)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user