diff options
author | Havoc Pennington <hp@redhat.com> | 2003-04-12 18:32:11 +0000 |
---|---|---|
committer | Havoc Pennington <hp@redhat.com> | 2003-04-12 18:32:11 +0000 |
commit | bc983ecf15455f49e7a92d038c93e181ae2cb438 (patch) | |
tree | d53948dab970d81f07e195513804945b87a758e8 /bus/config-parser.h | |
parent | 4b773b4a5448ac9bea2cc57486571588fdc14480 (diff) | |
download | dbus-bc983ecf15455f49e7a92d038c93e181ae2cb438.tar.gz dbus-bc983ecf15455f49e7a92d038c93e181ae2cb438.tar.bz2 dbus-bc983ecf15455f49e7a92d038c93e181ae2cb438.zip |
2003-04-12 Havoc Pennington <hp@pobox.com>
* bus/policy.h: change BusPolicy to be the thing from the config
file, and rename old BusPolicy to BusClientPolicy
* bus/bus.c, bus/connection.c, bus/config-parser.c: change to
match change in how policy works
* dbus/dbus-internals.h: mark assert_not_reached as
__attribute((noreturn))__
Diffstat (limited to 'bus/config-parser.h')
-rw-r--r-- | bus/config-parser.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bus/config-parser.h b/bus/config-parser.h index 93d41003..15644ee6 100644 --- a/bus/config-parser.h +++ b/bus/config-parser.h @@ -29,6 +29,7 @@ #include <dbus/dbus.h> #include <dbus/dbus-string.h> #include <dbus/dbus-list.h> +#include "bus.h" /* Whatever XML library we're using just pushes data into this API */ @@ -62,6 +63,7 @@ DBusList** bus_config_parser_get_mechanisms (BusConfigParser *parser); dbus_bool_t bus_config_parser_get_fork (BusConfigParser *parser); const char* bus_config_parser_get_pidfile (BusConfigParser *parser); DBusList** bus_config_parser_get_service_dirs (BusConfigParser *parser); +BusPolicy* bus_config_parser_steal_policy (BusConfigParser *parser); /* Loader functions (backended off one of the XML parsers). Returns a * finished ConfigParser. |