]> git.sur5r.net Git - openldap/blob - servers/slapd/back-perl/unbind.c
a79f9062f8bcbe722023bb68a11b5bdd01c6c580
[openldap] / servers / slapd / back-perl / unbind.c
1 /* $OpenLDAP$ */
2 /*
3  *   Copyright 1999, John C. Quillan, All rights reserved.
4  *
5  *   Redistribution and use in source and binary forms are permitted only
6  *   as authorized by the OpenLDAP Public License.  A copy of this
7  *   license is available at http://www.OpenLDAP.org/license.html or
8  *   in file LICENSE in the top-level directory of the distribution.
9  */
10
11 #include "portable.h"
12  /* init.c - initialize shell backend */
13   
14 #include <stdio.h>
15 /*      #include <ac/types.h>
16         #include <ac/socket.h>
17 */
18
19 #include <EXTERN.h>
20 #include <perl.h>
21
22 #include "slap.h"
23 #include "perl_back.h"
24
25
26 /**********************************************************
27  *
28  * UnBind
29  *
30  **********************************************************/
31 int
32 perl_back_unbind(
33         Backend *be,
34         Connection *conn,
35         Operation *op
36 )
37 {
38         Debug( LDAP_DEBUG_TRACE, "Perl UNBIND\n", 0, 0, 0 );
39         return 0;
40 }
41