]> git.sur5r.net Git - openldap/blob - servers/slapd/back-dnssrv/compare.c
Memory context tweaks for Bind
[openldap] / servers / slapd / back-dnssrv / compare.c
1 /* compare.c - DNS SRV backend compare function */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 2000-2003 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7
8 #include "portable.h"
9
10 #include <stdio.h>
11
12 #include <ac/string.h>
13 #include <ac/socket.h>
14
15 #include "slap.h"
16 #include "back-dnssrv.h"
17
18 int
19 dnssrv_back_compare(
20         Operation       *op,
21         SlapReply       *rs
22 )
23 {
24 #if 0
25         assert( get_manageDSAit( op ) );
26 #endif
27         send_ldap_error( op, rs, LDAP_OTHER,
28                         "Operation not supported within naming context" );
29
30         /* not implemented */
31
32         return 1;
33 }