]> git.ipfire.org Git - thirdparty/shairport-sync.git/commitdiff
Allow compilation with AirPlay2 not selected.
authorMike Brady <4265913+mikebrady@users.noreply.github.com>
Sun, 12 Sep 2021 14:31:45 +0000 (15:31 +0100)
committerMike Brady <4265913+mikebrady@users.noreply.github.com>
Sun, 12 Sep 2021 14:31:45 +0000 (15:31 +0100)
rtsp.c

diff --git a/rtsp.c b/rtsp.c
index c8bec51cdb75356084877137daf156789b5a093a..62fbb7da4f1d769c9977c8ab9c0b3574164bbeb7 100644 (file)
--- a/rtsp.c
+++ b/rtsp.c
@@ -4472,22 +4472,21 @@ void rtsp_conversation_thread_cleanup_function(void *arg) {
 
   debug(1, "Connection %d: rtsp_conversation_thread_func_cleanup_function called.",
         conn->connection_number);
+#ifdef CONFIG_AIRPLAY_2
   teardown_phase_one(conn);
   teardown_phase_two(conn);
+#endif
 
   debug(3, "Connection %d terminating:Closing timing, control and audio sockets...",
         conn->connection_number);
   if (conn->control_socket) {
     close(conn->control_socket);
-    debug(1, "Connection %d: closing control port %u", conn->local_ap2_control_port);
   }
   if (conn->timing_socket) {
     close(conn->timing_socket);
-    debug(1, "Connection %d: closing timing port %u", conn->local_ap2_control_port);
   }
   if (conn->audio_socket) {
     close(conn->audio_socket);
-    debug(1, "Connection %d: closing audio port %u", conn->local_ap2_control_port);
   }