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)
30 lines
510 B
C
30 lines
510 B
C
/* compare.c - DNS SRV backend compare function */
|
|
/* $OpenLDAP$ */
|
|
/*
|
|
* Copyright 2000 The OpenLDAP Foundation, All Rights Reserved.
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
*/
|
|
|
|
#include "portable.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ac/string.h>
|
|
#include <ac/socket.h>
|
|
|
|
#include "slap.h"
|
|
#include "back-dnssrv.h"
|
|
|
|
int
|
|
dnssrv_back_compare(
|
|
Backend *be,
|
|
Connection *conn,
|
|
Operation *op,
|
|
char *dn,
|
|
char *ndn,
|
|
Ava *ava
|
|
)
|
|
{
|
|
return dnssrv_back_request( be, conn, op, dn, ndn );
|
|
}
|