2000-05-11 02:17:38 +08:00
|
|
|
/* compare.c - DNS SRV backend compare function */
|
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/*
|
2003-01-04 04:20:47 +08:00
|
|
|
* Copyright 2000-2003 The OpenLDAP Foundation, All Rights Reserved.
|
2000-05-11 02:17:38 +08:00
|
|
|
* 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,
|
2000-05-22 11:46:57 +08:00
|
|
|
const char *dn,
|
|
|
|
const char *ndn,
|
2000-05-16 00:53:28 +08:00
|
|
|
AttributeAssertion *ava
|
2000-05-11 02:17:38 +08:00
|
|
|
)
|
|
|
|
{
|
2000-06-16 11:54:52 +08:00
|
|
|
assert( get_manageDSAit( op ) );
|
|
|
|
|
|
|
|
/* not implemented */
|
|
|
|
|
|
|
|
return LDAP_OTHER;
|
2000-05-11 02:17:38 +08:00
|
|
|
}
|