From 034c6ed7da5e44bfdde5a5d0da75f7b7a59953b8 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 26 Jan 2010 04:18:44 +0100 Subject: first attempt at proper service/socket logic --- snapshot.c | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) (limited to 'snapshot.c') diff --git a/snapshot.c b/snapshot.c index fc7bb5f478..8fd819e2a9 100644 --- a/snapshot.c +++ b/snapshot.c @@ -3,11 +3,7 @@ #include "name.h" #include "snapshot.h" -static NameActiveState snapshot_active_state(Name *n) { - return SNAPSHOT(n)->state == SNAPSHOT_DEAD ? NAME_INACTIVE : NAME_ACTIVE; -} - -static void snapshot_free_hook(Name *n) { +static void snapshot_done(Name *n) { Snapshot *s = SNAPSHOT(n); assert(s); @@ -15,17 +11,14 @@ static void snapshot_free_hook(Name *n) { /* Nothing here for now */ } +static NameActiveState snapshot_active_state(Name *n) { + return SNAPSHOT(n)->state == SNAPSHOT_DEAD ? NAME_INACTIVE : NAME_ACTIVE; +} + const NameVTable snapshot_vtable = { .suffix = ".snapshot", - .load = NULL, - .dump = NULL, - - .start = NULL, - .stop = NULL, - .reload = NULL, - - .active_state = snapshot_active_state, + .done = snapshot_done, - .free_hook = snapshot_free_hook + .active_state = snapshot_active_state }; -- cgit v1.2.3-54-g00ecf