openldap/servers/slapd/back-dnssrv/search.c
2000-05-10 18:17:38 +00:00

39 lines
617 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,
char *base,
char *nbase,
int scope,
int deref,
int size,
int time,
Filter *filter,
char *filterstr,
char **attrs,
int attrsonly
)
{
return -1;
}