openldap/servers/slapd/back-dnssrv/compare.c

30 lines
515 B
C
Raw Normal View History

/* compare.c - DNS SRV backend compare function */
/* $OpenLDAP$ */
/*
2000-05-13 10:47:56 +08:00
* Copyright 2000-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 );
}