2000-05-11 02:17:38 +08:00
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/*
|
|
|
|
* Copyright 2000, OpenLDAP Foundation, All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms are permitted only
|
|
|
|
* as authorized by the OpenLDAP Public License. A copy of this
|
|
|
|
* license is available at http://www.OpenLDAP.org/license.html or
|
|
|
|
* in file LICENSE in the top-level directory of the distribution.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DNSSRV_BACK_H
|
|
|
|
#define DNSSRV_BACK_H 1
|
|
|
|
|
|
|
|
#include "external.h"
|
|
|
|
|
|
|
|
LDAP_BEGIN_DECL
|
2000-05-11 04:11:58 +08:00
|
|
|
|
|
|
|
int dnssrv_result();
|
|
|
|
|
|
|
|
extern int dnssrv_back_request LDAP_P((
|
|
|
|
BackendDB *bd,
|
|
|
|
Connection *conn, Operation *op,
|
2000-06-05 11:10:46 +08:00
|
|
|
const char *dn, const char *ndn,
|
|
|
|
int scope, Filter *filter,
|
|
|
|
char **attrs, int attrsonly ));
|
2000-05-11 04:11:58 +08:00
|
|
|
|
2000-05-11 02:17:38 +08:00
|
|
|
LDAP_END_DECL
|
|
|
|
|
|
|
|
#endif /* DNSSRV_BACK_H */
|