2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
2009-07-28 16:42:40 +02:00
|
|
|
|
2019-04-03 21:31:32 +02:00
|
|
|
#ifndef MPD_CLIENT_CONFIG_HXX
|
|
|
|
#define MPD_CLIENT_CONFIG_HXX
|
2009-07-28 17:17:23 +02:00
|
|
|
|
2020-10-08 19:35:36 +02:00
|
|
|
#include "event/Chrono.hxx"
|
2016-12-27 23:06:34 +01:00
|
|
|
|
2019-04-03 21:31:32 +02:00
|
|
|
struct ConfigData;
|
|
|
|
|
2020-10-08 19:35:36 +02:00
|
|
|
extern Event::Duration client_timeout;
|
2009-07-28 17:17:23 +02:00
|
|
|
extern size_t client_max_command_list_size;
|
|
|
|
extern size_t client_max_output_buffer_size;
|
|
|
|
|
2019-04-03 21:31:32 +02:00
|
|
|
void
|
|
|
|
client_manager_init(const ConfigData &config);
|
|
|
|
|
2009-07-28 16:42:40 +02:00
|
|
|
#endif
|