/*
* Portions Copyright 1998 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
/*
* Copyright (c) 1990 Regents of the University of Michigan.
* All rights reserved.
*
* modrdn.c
*/
#ifndef lint
static char copyright[] = "@(#) Copyright (c) 1990 Regents of the University of Michigan.\nAll rights reserved.\n";
#endif
#include <stdio.h>
#include <string.h>
#ifdef MACOS
#include "macos.h"
#endif /* MACOS */
#endif
#include "lber.h"
#include "ldap.h"
#include "ldap-private.h"
#include "ldap-int.h"
/*
* ldap_modrdn - initiate an ldap (and X.500) modifyRDN operation. Parameters:
*
* ld LDAP descriptor
* dn DN of the object to modify
* newrdn RDN to give the object
* deleteoldrdn nonzero means to delete old rdn values from the entry
*
* Example:
* msgid = ldap_modrdn( ld, dn, newrdn );
*/
int
{
int rv;
/*
* A modify rdn request looks like this:
* ModifyRDNRequest ::= SEQUENCE {
* entry DistinguishedName,
* newrdn RelativeDistinguishedName,
* deleteoldrdn BOOLEAN
* }
*/
#ifdef _REENTRANT
#endif
/* create a message to send */
#ifdef _REENTRANT
#endif
return( -1 );
}
#ifdef _REENTRANT
#endif
return( -1 );
}
/* send the message */
#ifdef _REENTRANT
#endif
return ( rv );
}
int
{
}
int
{
int msgid;
}
int
{
}