]> git.sur5r.net Git - openldap/blob - servers/slapd/back-shell/init.c
include portable.h
[openldap] / servers / slapd / back-shell / init.c
1 /* init.c - initialize shell backend */
2
3 #include "portable.h"
4
5 #include <stdio.h>
6 #include <sys/types.h>
7 #include <sys/socket.h>
8 #include "slap.h"
9 #include "shell.h"
10
11 shell_back_init(
12     Backend     *be
13 )
14 {
15         struct shellinfo        *si;
16
17         si = (struct shellinfo *) ch_calloc( 1, sizeof(struct shellinfo) );
18
19         be->be_private = si;
20 }