2000-05-11 02:17:38 +08:00
|
|
|
/* compare.c - DNS SRV backend compare function */
|
|
|
|
/* $OpenLDAP$ */
|
2003-11-27 01:28:33 +08:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2004-01-02 03:15:16 +08:00
|
|
|
* Copyright 2000-2004 The OpenLDAP Foundation.
|
2003-11-27 01:28:33 +08:00
|
|
|
* Portions Copyright 2000-2003 Kurt D. Zeilenga.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
* Public License.
|
|
|
|
*
|
|
|
|
* A copy of this license is available in the file LICENSE in the
|
|
|
|
* top-level directory of the distribution or, alternatively, at
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
|
|
|
*/
|
|
|
|
/* ACKNOWLEDGEMENTS:
|
|
|
|
* This work was originally developed by Kurt D. Zeilenga for inclusion
|
|
|
|
* in OpenLDAP Software.
|
2000-05-11 02:17:38 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#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(
|
2003-04-08 19:20:18 +08:00
|
|
|
Operation *op,
|
|
|
|
SlapReply *rs
|
2000-05-11 02:17:38 +08:00
|
|
|
)
|
|
|
|
{
|
2003-04-08 19:20:18 +08:00
|
|
|
#if 0
|
2000-06-16 11:54:52 +08:00
|
|
|
assert( get_manageDSAit( op ) );
|
2003-04-08 19:20:18 +08:00
|
|
|
#endif
|
|
|
|
send_ldap_error( op, rs, LDAP_OTHER,
|
2004-03-28 07:25:50 +08:00
|
|
|
"Operation not supported within naming context" );
|
2000-06-16 11:54:52 +08:00
|
|
|
|
|
|
|
/* not implemented */
|
2003-04-08 19:20:18 +08:00
|
|
|
return 1;
|
2000-05-11 02:17:38 +08:00
|
|
|
}
|