mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-04-18 15:20:35 +08:00
Wasn't merged. Just use autoconf version.
This commit is contained in:
parent
393a5e21b8
commit
41a48b09dd
@ -17,44 +17,28 @@
|
||||
* We also tolerate URLs that look like: <ldapurl> and <URL:ldapurl>
|
||||
*/
|
||||
|
||||
#include "portable.h"
|
||||
|
||||
#ifndef lint
|
||||
static char copyright[] = "@(#) Copyright (c) 1996 Regents of the University of Michigan.\nAll rights reserved.\n";
|
||||
#endif
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <ctype.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#ifdef MACOS
|
||||
#include "macos.h"
|
||||
#endif /* MACOS */
|
||||
|
||||
#if defined( DOS ) || defined( _WIN32 )
|
||||
#include <malloc.h>
|
||||
#include "msdos.h"
|
||||
#endif /* DOS || _WIN32 */
|
||||
|
||||
#if !defined(MACOS) && !defined(DOS) && !defined( _WIN32 )
|
||||
#include <sys/time.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/socket.h>
|
||||
#endif /* !MACOS && !DOS && !_WIN32 */
|
||||
#include <ac/ctype.h>
|
||||
#include <ac/socket.h>
|
||||
#include <ac/string.h>
|
||||
#include <ac/time.h>
|
||||
|
||||
#include "lber.h"
|
||||
#include "ldap.h"
|
||||
#include "ldap-int.h"
|
||||
|
||||
|
||||
#ifdef NEEDPROTOS
|
||||
static int skip_url_prefix( char **urlp, int *enclosedp );
|
||||
static void hex_unescape( char *s );
|
||||
static int unhex( char c );
|
||||
#else /* NEEDPROTOS */
|
||||
static int skip_url_prefix();
|
||||
static void hex_unescape();
|
||||
static int unhex();
|
||||
#endif /* NEEDPROTOS */
|
||||
static int skip_url_prefix LDAP_P(( char **urlp, int *enclosedp ));
|
||||
static void hex_unescape LDAP_P(( char *s ));
|
||||
static int unhex LDAP_P(( char c ));
|
||||
|
||||
|
||||
int
|
||||
|
Loading…
x
Reference in New Issue
Block a user