diff options
author | Max Kellermann <max@duempel.org> | 2015-08-11 22:11:28 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-08-11 22:43:10 +0200 |
commit | 0f92d021a1dc2992352b635846428229d2c9ffbb (patch) | |
tree | 428bb5673728c67cf1fd29672609c9e367ad9da0 /src/command/OtherCommands.hxx | |
parent | cbdc3194cc20aa5abcce8b53c44d46a96002ad3a (diff) |
command/Request: new struct wrapping ConstBuffer<const char *>
Diffstat (limited to 'src/command/OtherCommands.hxx')
-rw-r--r-- | src/command/OtherCommands.hxx | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/src/command/OtherCommands.hxx b/src/command/OtherCommands.hxx index c0b25dece..bcc1224e4 100644 --- a/src/command/OtherCommands.hxx +++ b/src/command/OtherCommands.hxx @@ -23,54 +23,54 @@ #include "CommandResult.hxx" class Client; -template<typename T> struct ConstBuffer; +class Request; CommandResult -handle_urlhandlers(Client &client, ConstBuffer<const char *> args); +handle_urlhandlers(Client &client, Request args); CommandResult -handle_decoders(Client &client, ConstBuffer<const char *> args); +handle_decoders(Client &client, Request args); CommandResult -handle_tagtypes(Client &client, ConstBuffer<const char *> args); +handle_tagtypes(Client &client, Request args); CommandResult -handle_kill(Client &client, ConstBuffer<const char *> args); +handle_kill(Client &client, Request args); CommandResult -handle_close(Client &client, ConstBuffer<const char *> args); +handle_close(Client &client, Request args); CommandResult -handle_listfiles(Client &client, ConstBuffer<const char *> args); +handle_listfiles(Client &client, Request args); CommandResult -handle_lsinfo(Client &client, ConstBuffer<const char *> args); +handle_lsinfo(Client &client, Request args); CommandResult -handle_update(Client &client, ConstBuffer<const char *> args); +handle_update(Client &client, Request args); CommandResult -handle_rescan(Client &client, ConstBuffer<const char *> args); +handle_rescan(Client &client, Request args); CommandResult -handle_setvol(Client &client, ConstBuffer<const char *> args); +handle_setvol(Client &client, Request args); CommandResult -handle_volume(Client &client, ConstBuffer<const char *> args); +handle_volume(Client &client, Request args); CommandResult -handle_stats(Client &client, ConstBuffer<const char *> args); +handle_stats(Client &client, Request args); CommandResult -handle_ping(Client &client, ConstBuffer<const char *> args); +handle_ping(Client &client, Request args); CommandResult -handle_password(Client &client, ConstBuffer<const char *> args); +handle_password(Client &client, Request args); CommandResult -handle_config(Client &client, ConstBuffer<const char *> args); +handle_config(Client &client, Request args); CommandResult -handle_idle(Client &client, ConstBuffer<const char *> args); +handle_idle(Client &client, Request args); #endif |