mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
dbde2604d7
add common request handler remove bind handler (not needed)
28 lines
650 B
C
28 lines
650 B
C
/* $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
|
|
|
|
int dnssrv_result();
|
|
|
|
extern int dnssrv_back_request LDAP_P((
|
|
BackendDB *bd,
|
|
Connection *conn, Operation *op,
|
|
const char *dn, const char *ndn ));
|
|
|
|
LDAP_END_DECL
|
|
|
|
#endif /* DNSSRV_BACK_H */
|