From e78b410a6afff53d61a4caf9c6e76fb995e0bc76 Mon Sep 17 00:00:00 2001 From: Přemysl Eric Janouch Date: Wed, 7 Aug 2024 22:03:08 +0200 Subject: MPD client: save the protocol version --- liberty-proto.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/liberty-proto.c b/liberty-proto.c index 7c884e9..577fcda 100644 --- a/liberty-proto.c +++ b/liberty-proto.c @@ -1381,7 +1381,7 @@ struct mpd_client // Protocol: - bool got_hello; ///< Got the OK MPD hello message + char *got_hello; ///< Version from OK MPD hello message bool idling; ///< Sent idle as the last command unsigned idling_subsystems; ///< Subsystems we're idling for @@ -1482,7 +1482,7 @@ mpd_client_reset (struct mpd_client *self) str_reset (&self->read_buffer); str_reset (&self->write_buffer); - self->got_hello = false; + cstr_set (&self->got_hello, NULL); self->idling = false; self->idling_subsystems = 0; self->in_list = false; @@ -1549,7 +1549,8 @@ mpd_client_parse_hello (struct mpd_client *self, const char *line) // TODO: call "on_connected" now. We should however also set up a timer // so that we don't wait on this message forever. - return self->got_hello = true; + cstr_set (&self->got_hello, xstrdup (line + sizeof hello - 1)); + return true; } static bool -- cgit v1.2.3-54-g00ecf