openldap/servers/slapd/back-dnssrv/search.c
Kurt Zeilenga 60802201e3 Const'ification
SASL mech removed from backend bind callback (as SASL is managed by frontend)
Changes to some backends are untested (as I don't have all dependent
  software install)
2000-05-22 03:46:57 +00:00

39 lines
673 B
C

/* search.c - DNS SRV backend search function */
/* $OpenLDAP$ */
/*
* Copyright 2000 The OpenLDAP Foundation, All Rights Reserved.
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
*/
#include "portable.h"
#include <stdio.h>
#include <ac/socket.h>
#include <ac/string.h>
#include <ac/time.h>
#include "slap.h"
#include "back-dnssrv.h"
int
dnssrv_back_search(
Backend *be,
Connection *conn,
Operation *op,
const char *dn,
const char *ndn,
int scope,
int deref,
int size,
int time,
Filter *filter,
const char *filterstr,
char **attrs,
int attrsonly
)
{
return dnssrv_back_request( be, conn, op, dn, ndn );
}