From 7ac82a61aff588daaa1c217889b3055538380e47 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Wed, 24 Jun 2009 07:53:48 -0400 Subject: Monitor resolv.conf for changes This patch updates the monitor_config_file() functions so that they can monitor any number of files and invoke a specified callback whenever they are modified. When inotify is available, we will add an additional watch descriptor to the inotify file descriptor. When inotify is not available, the polling function will simply loop to check each file in the monitor list. When changes are discovered in resolv.conf, the monitor will send a "resInit" signal to all of its known children. They are only required to handle this function if they need updated DNS information. Services that do not implement resInit should return DBUS_ERROR_UNKNOWN_METHOD (rather than timing out) with no ill effects. --- server/confdb/confdb.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'server/confdb') diff --git a/server/confdb/confdb.h b/server/confdb/confdb.h index ad3f15a6c..91eeff72d 100644 --- a/server/confdb/confdb.h +++ b/server/confdb/confdb.h @@ -39,8 +39,6 @@ struct confdb_ctx; struct config_file_ctx; -typedef int (*confdb_reconf_fn) (struct config_file_ctx *file_ctx); - struct sss_domain_info { char *name; char *provider; -- cgit