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

34 lines
558 B
C
Raw Normal View History

/* compare.c - DNS SRV backend compare function */
/* $OpenLDAP$ */
/*
2000-05-22 02:15:00 +08:00
* 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,
const char *dn,
const char *ndn,
2000-05-16 00:53:28 +08:00
AttributeAssertion *ava
)
{
assert( get_manageDSAit( op ) );
/* not implemented */
return LDAP_OTHER;
}