Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nadezhda Ivanova
OpenLDAP
Commits
749404b8
Commit
749404b8
authored
26 years ago
by
Ben Collins
Browse files
Options
Downloads
Patches
Plain Diff
Implemented the open, init functions correctly
parent
8c3f485d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
servers/slapd/back-tcl/tcl_init.c
+29
-9
29 additions, 9 deletions
servers/slapd/back-tcl/tcl_init.c
with
29 additions
and
9 deletions
servers/slapd/back-tcl/tcl_init.c
+
29
−
9
View file @
749404b8
...
...
@@ -7,6 +7,10 @@
* as authorized by the OpenLDAP Public License. A copy of this
* license is available at http://www.OpenLDAP.org/license.html or
* in file LICENSE in the top-level directory of the distribution.
*
* $Id$
*
* $Log$
*/
#include
"portable.h"
...
...
@@ -35,15 +39,16 @@ tcl_back_initialize(
/* Initialize the global interpreter lock */
ldap_pvt_thread_mutex_init
(
&
tcl_interpreter_mutex
);
bi
->
bi_open
=
NULL
;
bi
->
bi_config
=
NULL
;
bi
->
bi_close
=
NULL
;
bi
->
bi_destroy
=
NULL
;
bi
->
bi_open
=
tcl_back_open
;
bi
->
bi_config
=
tcl_back_config
;
bi
->
bi_close
=
tcl_back_close
;
bi
->
bi_destroy
=
tcl_back_destroy
;
bi
->
bi_db_init
=
tcl_back_db_init
;
bi
->
bi_db_config
=
tcl_back_db_config
;
bi
->
bi_db_open
=
tcl_back_db_open
;
bi
->
bi_db_close
=
NULL
;
bi
->
bi_db_close
=
tcl_back_db_close
;
bi
->
bi_db_destroy
=
tcl_back_db_destroy
;
bi
->
bi_op_bind
=
tcl_back_bind
;
...
...
@@ -89,11 +94,26 @@ tcl_back_db_init(
return
ti
==
NULL
;
}
int
tcl_back_db_destroy
(
Backend
*
be
int
tcl_back_db_open
(
BackendDB
*
bd
)
{
free
(
be
->
be_private
);
struct
tclinfo
*
ti
=
(
struct
tclinfo
*
)
bd
->
be_private
;
if
(
ti
->
ti_ii
->
interp
==
NULL
)
{
/* we need to make a new one */
ti
->
ti_ii
->
interp
=
Tcl_CreateInterp
();
Tcl_Init
(
ti
->
interp
);
}
/* raise that count for the interpreter */
ti
->
ti_ii
->
count
++
;
/* now let's (try to) load the script */
readtclscript
(
ti
->
script_path
,
ti
->
ti_ii
->
interp
);
/* Intall the debug command */
Tcl_CreateCommand
(
ti
->
ti_ii
->
interp
,
"ldap:debug"
,
&
tcl_ldap_debug
,
NULL
,
NULL
);
return
0
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment