]> git.ipfire.org Git - thirdparty/shairport-sync.git/commitdiff
Spell out "Shairport Sync" explicitly so that it appears in the info in the Home...
authorMike Brady <4265913+mikebrady@users.noreply.github.com>
Wed, 14 Jul 2021 07:58:43 +0000 (08:58 +0100)
committerMike Brady <4265913+mikebrady@users.noreply.github.com>
Wed, 14 Jul 2021 07:58:43 +0000 (08:58 +0100)
rtsp.c

diff --git a/rtsp.c b/rtsp.c
index ba09ce15643e66c94efaa546645c090f1b912310..e8055fed9638e6175ec00266630a137ba475d6e6 100644 (file)
--- 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;