~ttx/openldap/lucid-gssapi-495418

« back to all changes in this revision

Viewing changes to servers/slapd/back-shell/proto-shell.h

  • Committer: Bazaar Package Importer
  • Author(s): Mathias Gug
  • Date: 2008-07-10 14:45:49 UTC
  • Revision ID: james.westby@ubuntu.com-20080710144549-wck73med0e72gfyo
Tags: upstream-2.4.10
ImportĀ upstreamĀ versionĀ 2.4.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $OpenLDAP: pkg/ldap/servers/slapd/back-shell/proto-shell.h,v 1.4.2.3 2008/02/11 23:26:47 kurt Exp $ */
 
2
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
 
3
 *
 
4
 * Copyright 1998-2008 The OpenLDAP Foundation.
 
5
 * All rights reserved.
 
6
 *
 
7
 * Redistribution and use in source and binary forms, with or without
 
8
 * modification, are permitted only as authorized by the OpenLDAP
 
9
 * Public License.
 
10
 *
 
11
 * A copy of this license is available in the file LICENSE in the
 
12
 * top-level directory of the distribution or, alternatively, at
 
13
 * <http://www.OpenLDAP.org/license.html>.
 
14
 */
 
15
/* Portions Copyright (c) 1995 Regents of the University of Michigan.
 
16
 * All rights reserved.
 
17
 *
 
18
 * Redistribution and use in source and binary forms are permitted
 
19
 * provided that this notice is preserved and that due credit is given
 
20
 * to the University of Michigan at Ann Arbor. The name of the University
 
21
 * may not be used to endorse or promote products derived from this
 
22
 * software without specific prior written permission. This software
 
23
 * is provided ``as is'' without express or implied warranty.
 
24
 */
 
25
/* ACKNOWLEDGEMENTS:
 
26
 * This work was originally developed by the University of Michigan
 
27
 * (as part of U-MICH LDAP).
 
28
 */
 
29
 
 
30
#ifndef PROTO_SHELL_H
 
31
#define PROTO_SHELL_H
 
32
 
 
33
LDAP_BEGIN_DECL
 
34
 
 
35
extern BI_init          shell_back_initialize;
 
36
 
 
37
extern BI_open          shell_back_open;
 
38
extern BI_close         shell_back_close;
 
39
extern BI_destroy       shell_back_destroy;
 
40
 
 
41
extern BI_db_init       shell_back_db_init;
 
42
extern BI_db_destroy    shell_back_db_destroy;
 
43
extern BI_db_config     shell_back_db_config;
 
44
 
 
45
extern BI_op_bind       shell_back_bind;
 
46
extern BI_op_unbind     shell_back_unbind;
 
47
extern BI_op_search     shell_back_search;
 
48
extern BI_op_compare    shell_back_compare;
 
49
extern BI_op_modify     shell_back_modify;
 
50
extern BI_op_modrdn     shell_back_modrdn;
 
51
extern BI_op_add        shell_back_add;
 
52
extern BI_op_delete     shell_back_delete;
 
53
 
 
54
LDAP_END_DECL
 
55
 
 
56
#endif /* PROTO_SHELL_H */