Skip to content
Snippets Groups Projects
Commit f227a960 authored by Pierangelo Masarati's avatar Pierangelo Masarati
Browse files

more for the allop overlay

parent 95f65ff3
Branches
Tags
No related merge requests found
......@@ -15,6 +15,7 @@
SRCS = overlays.c \
accesslog.c \
allop.c \
denyop.c \
dyngroup.c \
dynlist.c \
......@@ -54,6 +55,9 @@ dynamic: $(PROGRAMS)
accesslog.la : accesslog.lo
$(LTLINK_MOD) -module -o $@ accesslog.lo version.lo $(LINK_LIBS)
allop.la : allop.lo
$(LTLINK_MOD) -module -o $@ allop.lo version.lo $(LINK_LIBS)
denyop.la : denyop.lo
$(LTLINK_MOD) -module -o $@ denyop.lo version.lo $(LINK_LIBS)
......
......@@ -26,6 +26,9 @@
#if SLAPD_OVER_ACCESSLOG == SLAPD_MOD_STATIC
extern int accesslog_init();
#endif
#if SLAPD_OVER_ALLOP == SLAPD_MOD_STATIC
extern int allop_init();
#endif
#if SLAPD_OVER_DENYOP == SLAPD_MOD_STATIC
extern int denyop_init();
#endif
......@@ -73,6 +76,9 @@ static struct {
#if SLAPD_OVER_ACCESSLOG == SLAPD_MOD_STATIC
{ "Access Log", accesslog_init },
#endif
#if SLAPD_OVER_ALLOP == SLAPD_MOD_STATIC
{ "All Operational", allop_init },
#endif
#if SLAPD_OVER_DENYOP == SLAPD_MOD_STATIC
{ "Deny Operation", denyop_init },
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment