]> git.sur5r.net Git - openldap/blob - servers/slapd/back-dnssrv/search.c
s/2000-2000/2000/ in copyright notice
[openldap] / servers / slapd / back-dnssrv / search.c
1 /* search.c - DNS SRV backend search function */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 2000 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7
8
9 #include "portable.h"
10
11 #include <stdio.h>
12
13 #include <ac/socket.h>
14 #include <ac/string.h>
15 #include <ac/time.h>
16
17 #include "slap.h"
18 #include "back-dnssrv.h"
19
20 int
21 dnssrv_back_search(
22     Backend     *be,
23     Connection  *conn,
24     Operation   *op,
25     char        *dn,
26     char        *ndn,
27     int         scope,
28     int         deref,
29     int         size,
30     int         time,
31     Filter      *filter,
32     char        *filterstr,
33     char        **attrs,
34     int         attrsonly
35 )
36 {
37         return dnssrv_back_request( be, conn, op, dn, ndn );
38 }