diff options
author | Max Kellermann <max@musicpd.org> | 2021-01-21 16:27:52 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2021-01-21 17:17:10 +0100 |
commit | 995aafe9cc511430bff7a7a690df70998f4bb025 (patch) | |
tree | b2f570aba54bb10f1b238922e1212766d1cc1a25 /src/command/ClientCommands.hxx | |
parent | 6e33566ceeb7e6c4454e44efd203b2e2fcd10feb (diff) |
protocol: add command "binarylimit"
Increasing the protocol version to 0.22.4 to allow clients to detect
this feature.
Closes https://github.com/MusicPlayerDaemon/MPD/issues/1038
Diffstat (limited to 'src/command/ClientCommands.hxx')
-rw-r--r-- | src/command/ClientCommands.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/command/ClientCommands.hxx b/src/command/ClientCommands.hxx index fc0dc42e1..de766e802 100644 --- a/src/command/ClientCommands.hxx +++ b/src/command/ClientCommands.hxx @@ -33,6 +33,9 @@ CommandResult handle_ping(Client &client, Request request, Response &response); CommandResult +handle_binary_limit(Client &client, Request request, Response &response); + +CommandResult handle_password(Client &client, Request request, Response &response); CommandResult |