1 /* $NetBSD: unbind.c,v 1.3 2021/08/14 16:15:01 christos Exp $ */
2
3 /* unbind.c - sock backend unbind function */
4 /* $OpenLDAP$ */
5 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
6 *
7 * Copyright 2007-2021 The OpenLDAP Foundation.
8 * All rights reserved.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted only as authorized by the OpenLDAP
12 * Public License.
13 *
14 * A copy of this license is available in the file LICENSE in the
15 * top-level directory of the distribution or, alternatively, at
16 * <http://www.OpenLDAP.org/license.html>.
17 */
18 /* ACKNOWLEDGEMENTS:
19 * This work was initially developed by Brian Candler for inclusion
20 * in OpenLDAP Software.
21 */
22
23 #include <sys/cdefs.h>
24 __RCSID("$NetBSD: unbind.c,v 1.3 2021/08/14 16:15:01 christos Exp $");
25
26 #include "portable.h"
27
28 #include <stdio.h>
29
30 #include <ac/socket.h>
31 #include <ac/string.h>
32
33 #include "slap.h"
34 #include "back-sock.h"
35
36 int
sock_back_unbind(Operation * op,SlapReply * rs)37 sock_back_unbind(
38 Operation *op,
39 SlapReply *rs
40 )
41 {
42 struct sockinfo *si = (struct sockinfo *) op->o_bd->be_private;
43 FILE *fp;
44
45 if ( (fp = opensock( si->si_sockpath )) == NULL ) {
46 send_ldap_error( op, rs, LDAP_OTHER,
47 "could not open socket" );
48 return( -1 );
49 }
50
51 /* write out the request to the unbind process */
52 fprintf( fp, "UNBIND\n" );
53 fprintf( fp, "msgid: %ld\n", (long) op->o_msgid );
54 sock_print_conn( fp, op->o_conn, si );
55 sock_print_suffixes( fp, op->o_bd );
56 fprintf( fp, "\n" );
57
58 /* no response to unbind */
59 fclose( fp );
60
61 return 0;
62 }
63