openldap/servers/slapd/back-shell/init.c

22 lines
301 B
C
Raw Normal View History

1998-08-09 08:43:13 +08:00
/* init.c - initialize shell backend */
1998-10-25 09:41:42 +08:00
#include "portable.h"
1998-08-09 08:43:13 +08:00
#include <stdio.h>
1998-10-25 09:41:42 +08:00
#include <ac/socket.h>
1998-08-09 08:43:13 +08:00
#include "slap.h"
#include "shell.h"
shell_back_init(
Backend *be
)
{
struct shellinfo *si;
si = (struct shellinfo *) ch_calloc( 1, sizeof(struct shellinfo) );
be->be_private = si;
}