manager can query and list IKE_SA status (no layout yet)
This commit is contained in:
+13
-8
@@ -1,13 +1,13 @@
|
||||
ipsec_PROGRAMS = manager
|
||||
ipsec_PROGRAMS = manager.fcgi
|
||||
|
||||
manager_SOURCES = \
|
||||
manager_fcgi_SOURCES = \
|
||||
main.c manager.c manager.h gateway.h gateway.c database.h database.c \
|
||||
controller/auth_controller.c controller/auth_controller.h \
|
||||
controller/static_controller.c controller/static_controller.h \
|
||||
controller/status_controller.c controller/status_controller.h \
|
||||
controller/gateway_controller.c controller/gateway_controller.h
|
||||
|
||||
manager_LDADD = $(top_builddir)/src/manager/libappserv.la -lsqlite3
|
||||
manager_fcgi_LDADD = $(top_builddir)/src/manager/libappserv.la -lsqlite3
|
||||
|
||||
|
||||
|
||||
@@ -16,18 +16,23 @@ lib_LTLIBRARIES = libappserv.la
|
||||
libappserv_la_SOURCES = \
|
||||
lib/context.h lib/dispatcher.c lib/request.h lib/response.h lib/session.h \
|
||||
lib/controller.h lib/dispatcher.h lib/request.c lib/response.c lib/session.c \
|
||||
lib/template.h lib/template.c
|
||||
lib/template.h lib/template.c lib/dict.h lib/dict.c lib/xml.h lib/xml.c
|
||||
|
||||
libappserv_la_LDFLAGS = -lstrongswan -lfcgi -lpthread -lneo_cs -lneo_utl
|
||||
libappserv_la_LDFLAGS = -lstrongswan -lfcgi -lpthread -lneo_cs -lneo_utl ${xml_LIBS}
|
||||
|
||||
INCLUDES = -I$(top_srcdir)/src/libstrongswan -I$(top_srcdir)/src/manager/lib -I/usr/include/ClearSilver
|
||||
INCLUDES = -I$(top_srcdir)/src/libstrongswan -I$(top_srcdir)/src/manager/lib -I/usr/include/ClearSilver ${xml_CFLAGS}
|
||||
|
||||
|
||||
ipsec_DATA = sqlite.db
|
||||
|
||||
ipsec_templatesdir = ${ipsecdir}/templates
|
||||
ipsec_templates_DATA = templates/header.cs templates/footer.cs
|
||||
|
||||
ipsec_templates_authdir = ${ipsec_templatesdir}/auth
|
||||
ipsec_templates_auth_DATA = templates/auth/login.cs templates/auth/logout.cs
|
||||
|
||||
ipsec_templates_staticdir = ${ipsec_templatesdir}/static
|
||||
ipsec_templates_static_DATA = templates/static/style.css
|
||||
ipsec_templates_gatewaydir = ${ipsec_templatesdir}/gateway
|
||||
ipsec_templates_gateway_DATA = templates/gateway/list.cs
|
||||
|
||||
ipsec_templates_statusdir = ${ipsec_templatesdir}/status
|
||||
ipsec_templates_status_DATA = templates/status/ikesalist.cs
|
||||
|
||||
Reference in New Issue
Block a user