summaryrefslogtreecommitdiff
path: root/src/libsystemd/sd-bus/bus-control.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2017-09-29 17:57:34 +0200
committerLennart Poettering <lennart@poettering.net>2017-09-29 17:57:34 +0200
commit532f808fd15ec2cd91777ab3ad9afce2670ebac5 (patch)
tree18b27f0cd75a6648728c17e7809ba238f0710851 /src/libsystemd/sd-bus/bus-control.h
parente28d0865539e07fcabe14270c700d21ef16ffdce (diff)
downloadsystemd-532f808fd15ec2cd91777ab3ad9afce2670ebac5.tar.gz
sd-bus: drop match cookie concept
THe match cookie was used by kdbus to identify matches we install uniquely. But given that kdbus is gone, the cookie serves no process anymore, let's kill it.
Diffstat (limited to 'src/libsystemd/sd-bus/bus-control.h')
-rw-r--r--src/libsystemd/sd-bus/bus-control.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/libsystemd/sd-bus/bus-control.h b/src/libsystemd/sd-bus/bus-control.h
index 91efc68d57..01c71874db 100644
--- a/src/libsystemd/sd-bus/bus-control.h
+++ b/src/libsystemd/sd-bus/bus-control.h
@@ -23,8 +23,5 @@
#include "bus-match.h"
-int bus_add_match_internal(sd_bus *bus, const char *match, struct bus_match_component *components, unsigned n_components, uint64_t cookie);
-int bus_remove_match_internal(sd_bus *bus, const char *match, uint64_t cookie);
-
-int bus_add_match_internal_kernel(sd_bus *bus, struct bus_match_component *components, unsigned n_components, uint64_t cookie);
-int bus_remove_match_internal_kernel(sd_bus *bus, uint64_t cookie);
+int bus_add_match_internal(sd_bus *bus, const char *match, struct bus_match_component *components, unsigned n_components);
+int bus_remove_match_internal(sd_bus *bus, const char *match);