mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-03 20:40:05 -05:00
Tried to port to NT... but no resolver routines.
This commit is contained in:
parent
fefe72b348
commit
0549966661
1 changed files with 5 additions and 8 deletions
|
|
@ -1,6 +1,3 @@
|
|||
#include "portable.h"
|
||||
|
||||
#ifdef LDAP_DNS
|
||||
/*
|
||||
* Copyright (c) 1995 Regents of the University of Michigan.
|
||||
* All rights reserved.
|
||||
|
|
@ -8,10 +5,14 @@
|
|||
* ldap_getdxbyname - retrieve DX records from the DNS (from TXT records for now)
|
||||
*/
|
||||
|
||||
#include "portable.h"
|
||||
|
||||
#ifdef LDAP_DNS
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <ctype.h>
|
||||
|
||||
#include <ac/ctype.h>
|
||||
#include <ac/socket.h>
|
||||
#include <ac/string.h>
|
||||
#include <ac/time.h>
|
||||
|
|
@ -22,10 +23,6 @@
|
|||
|
||||
static char ** decode_answer LDAP_P(( unsigned char *answer, int len ));
|
||||
|
||||
extern int h_errno;
|
||||
extern char *h_errlist[];
|
||||
|
||||
|
||||
#define MAX_TO_SORT 32
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue