mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-06 10:46:21 +08:00
32 lines
561 B
C
32 lines
561 B
C
/* modrdn.c - DNS SRV backend modrdn function */
|
|
/* $OpenLDAP$ */
|
|
/*
|
|
* Copyright 2000-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,
|
|
char *dn,
|
|
char *ndn,
|
|
char *newrdn,
|
|
int deleteoldrdn,
|
|
char *newSuperior
|
|
)
|
|
{
|
|
return dnssrv_back_request( be, conn, op, dn, ndn );
|
|
}
|