openldap/servers/slapd/back-shell/unbind.c

49 lines
962 B
C
Raw Normal View History

1998-08-09 08:43:13 +08:00
/* unbind.c - shell backend unbind function */
/* $OpenLDAP$ */
2000-05-16 00:35:48 +08:00
/*
* Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
*/
1998-08-09 08:43:13 +08:00
1998-10-25 09:41:42 +08:00
#include "portable.h"
1998-08-09 08:43:13 +08:00
#include <stdio.h>
1998-10-25 09:41:42 +08:00
#include <ac/socket.h>
#include <ac/string.h>
1998-08-09 08:43:13 +08:00
#include "slap.h"
#include "shell.h"
int
1998-08-09 08:43:13 +08:00
shell_back_unbind(
Backend *be,
Connection *conn,
Operation *op
1998-08-09 08:43:13 +08:00
)
{
struct shellinfo *si = (struct shellinfo *) be->be_private;
FILE *rfp, *wfp;
if ( si->si_unbind == NULL ) {
return 0;
1998-08-09 08:43:13 +08:00
}
if ( (op->o_private = (void *) forkandexec( si->si_unbind, &rfp, &wfp ))
== (void *) -1 ) {
return 0;
1998-08-09 08:43:13 +08:00
}
/* write out the request to the unbind process */
fprintf( wfp, "UNBIND\n" );
fprintf( wfp, "msgid: %ld\n", (long) op->o_msgid );
1998-08-09 08:43:13 +08:00
print_suffixes( wfp, be );
2001-12-25 01:01:08 +08:00
fprintf( wfp, "dn: %s\n", (conn->c_dn.bv_len ? conn->c_dn.bv_val : "") );
1998-08-09 08:43:13 +08:00
fclose( wfp );
/* no response to unbind */
fclose( rfp );
return 0;
1998-08-09 08:43:13 +08:00
}