diff options
author | Max Kellermann <max@duempel.org> | 2011-01-29 09:26:22 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2011-01-29 10:43:54 +0100 |
commit | f8b09c194fe20192c4ac45697e9d0f00e8a96c2c (patch) | |
tree | d45c30ce117a7e01431078305ffe2e96d016dc5c /src/idle.h | |
parent | 0e69ad32c16eb6449a8952f894c6f239f2e2c52f (diff) | |
download | mpd-f8b09c194fe20192c4ac45697e9d0f00e8a96c2c.tar.gz mpd-f8b09c194fe20192c4ac45697e9d0f00e8a96c2c.tar.xz mpd-f8b09c194fe20192c4ac45697e9d0f00e8a96c2c.zip |
protocol: support client-to-client communication
Diffstat (limited to 'src/idle.h')
-rw-r--r-- | src/idle.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/idle.h b/src/idle.h index 52adc4d6e..0156933c0 100644 --- a/src/idle.h +++ b/src/idle.h @@ -53,6 +53,12 @@ enum { /** a database update has started or finished. */ IDLE_UPDATE = 0x100, + + /** a client has subscribed or unsubscribed to/from a channel */ + IDLE_SUBSCRIPTION = 0x200, + + /** a message on the subscribed channel was receivedd */ + IDLE_MESSAGE = 0x400, }; /** |