From: Mike Brady <4265913+mikebrady@users.noreply.github.com> Date: Wed, 14 Jul 2021 07:58:43 +0000 (+0100) Subject: Spell out "Shairport Sync" explicitly so that it appears in the info in the Home... X-Git-Tag: 4.1-dev~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=58b8513ccd4a1cfadfd33556aceaea3bc0e8df97;p=thirdparty%2Fshairport-sync.git Spell out "Shairport Sync" explicitly so that it appears in the info in the Home app. Quieten a debug message. --- diff --git a/rtsp.c b/rtsp.c index ba09ce15..e8055fed 100644 --- a/rtsp.c +++ b/rtsp.c @@ -2369,7 +2369,7 @@ void handle_setup_2(rtsp_conn_info *conn, rtsp_message *req, rtsp_message *resp) debug(1, "Can't find timingPeerInfo addresses"); } } else { - debug_log_rtsp_message(1, "Unrecognised SETUP incoming message", req); + debug_log_rtsp_message(2, "Unrecognised SETUP incoming message", req); } // make up the timing peer info list part of the response... @@ -4414,7 +4414,7 @@ void *rtsp_listen_loop(__attribute((unused)) void *arg) { *p++ = ap1_featuresString; *p++ = firmware_version; *p++ = "md=2"; - *p++ = "am=SPS"; + *p++ = "am=Shairport Sync"; *p++ = "sf=0x4"; *p++ = "tp=UDP"; *p++ = "vn=65537"; @@ -4475,7 +4475,7 @@ void *rtsp_listen_loop(__attribute((unused)) void *arg) { *p++ = "acl=0"; *p++ = "rsf=0x0"; *p++ = firmware_version; - *p++ = "model=SPS"; + *p++ = "model=Shairport Sync"; char piString[64]; snprintf(piString, sizeof(piString), "pi=%s", config.airplay_pi); *p++ = piString;