mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
Remove files no longer needed (due to referral entry point)
This commit is contained in:
parent
79ebfbc4fe
commit
5e04ed8cfd
@ -1,28 +0,0 @@
|
||||
/* add.c - DNS SRV backend add function */
|
||||
/* $OpenLDAP$ */
|
||||
/*
|
||||
* Copyright 2000 The OpenLDAP Foundation, All Rights Reserved.
|
||||
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
||||
*/
|
||||
|
||||
#include "portable.h"
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#include <ac/string.h>
|
||||
#include <ac/socket.h>
|
||||
|
||||
#include "slap.h"
|
||||
#include "back-dnssrv.h"
|
||||
|
||||
int
|
||||
dnssrv_back_add(
|
||||
Backend *be,
|
||||
Connection *conn,
|
||||
Operation *op,
|
||||
Entry *e
|
||||
)
|
||||
{
|
||||
return dnssrv_back_request( be, conn, op, e->e_dn, e->e_ndn,
|
||||
0, NULL, NULL, 0 );
|
||||
}
|
@ -1,29 +0,0 @@
|
||||
/* $OpenLDAP$ */
|
||||
/*
|
||||
* Copyright 2000, OpenLDAP Foundation, All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms are permitted only
|
||||
* as authorized by the OpenLDAP Public License. A copy of this
|
||||
* license is available at http://www.OpenLDAP.org/license.html or
|
||||
* in file LICENSE in the top-level directory of the distribution.
|
||||
*/
|
||||
|
||||
#ifndef DNSSRV_BACK_H
|
||||
#define DNSSRV_BACK_H 1
|
||||
|
||||
#include "external.h"
|
||||
|
||||
LDAP_BEGIN_DECL
|
||||
|
||||
int dnssrv_result();
|
||||
|
||||
extern int dnssrv_back_request LDAP_P((
|
||||
BackendDB *bd,
|
||||
Connection *conn, Operation *op,
|
||||
const char *dn, const char *ndn,
|
||||
int scope, Filter *filter,
|
||||
char **attrs, int attrsonly ));
|
||||
|
||||
LDAP_END_DECL
|
||||
|
||||
#endif /* DNSSRV_BACK_H */
|
@ -1,30 +0,0 @@
|
||||
/* delete.c - DNS SRV backend delete function */
|
||||
/* $OpenLDAP$ */
|
||||
/*
|
||||
* Copyright 2000 The OpenLDAP Foundation, All Rights Reserved.
|
||||
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
||||
*/
|
||||
|
||||
|
||||
#include "portable.h"
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#include <ac/string.h>
|
||||
#include <ac/socket.h>
|
||||
|
||||
#include "slap.h"
|
||||
#include "back-dnssrv.h"
|
||||
|
||||
int
|
||||
dnssrv_back_delete(
|
||||
Backend *be,
|
||||
Connection *conn,
|
||||
Operation *op,
|
||||
const char *dn,
|
||||
const char *ndn
|
||||
)
|
||||
{
|
||||
return dnssrv_back_request( be, conn, op, dn, ndn,
|
||||
0, NULL, NULL, 0 );
|
||||
}
|
@ -1,31 +0,0 @@
|
||||
/* modify.c - DNS SRV backend modify function */
|
||||
/* $OpenLDAP$ */
|
||||
/*
|
||||
* Copyright 2000 The OpenLDAP Foundation, All Rights Reserved.
|
||||
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
||||
*/
|
||||
|
||||
|
||||
#include "portable.h"
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#include <ac/string.h>
|
||||
#include <ac/socket.h>
|
||||
|
||||
#include "slap.h"
|
||||
#include "back-dnssrv.h"
|
||||
|
||||
int
|
||||
dnssrv_back_modify(
|
||||
Backend *be,
|
||||
Connection *conn,
|
||||
Operation *op,
|
||||
const char *dn,
|
||||
const char *ndn,
|
||||
Modifications *ml
|
||||
)
|
||||
{
|
||||
return dnssrv_back_request( be, conn, op, dn, ndn,
|
||||
0, NULL, NULL, 0 );
|
||||
}
|
@ -1,32 +0,0 @@
|
||||
/* modrdn.c - DNS SRV backend modrdn 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 "slap.h"
|
||||
#include "back-dnssrv.h"
|
||||
|
||||
int
|
||||
dnssrv_back_modrdn(
|
||||
Backend *be,
|
||||
Connection *conn,
|
||||
Operation *op,
|
||||
const char *dn,
|
||||
const char *ndn,
|
||||
const char *newrdn,
|
||||
int deleteoldrdn,
|
||||
const char *newSuperior
|
||||
)
|
||||
{
|
||||
return dnssrv_back_request( be, conn, op, dn, ndn,
|
||||
0, NULL, NULL, 0 );
|
||||
}
|
Loading…
Reference in New Issue
Block a user