From 8e01e0f249dbb131d70fbdb4adc651421278d3d8 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Thu, 17 Jan 2008 19:29:23 +0100 Subject: [PATCH 1/1] server.c: Initialize vss _after_ afs. This way, afs doesn't inherit the open fds of the senders. This fixes sender http off Without this patch, para_audiod wouldn't notice that the http sender has closed its listening fd because afs still has this fd open. --- server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.c b/server.c index 1b3d7249..8783f8e4 100644 --- a/server.c +++ b/server.c @@ -399,11 +399,11 @@ static unsigned server_init(int argc, char **argv) PARA_NOTICE_LOG("initializing audio format handlers\n"); afh_init(); PARA_NOTICE_LOG("initializing virtual streaming system\n"); - vss_init(); mmd->server_pid = getpid(); setup_signal_handling(); PARA_NOTICE_LOG("initializing the audio file selector\n"); init_afs(); + vss_init(); mmd_lock(); /* init network socket */ PARA_NOTICE_LOG("initializing tcp command socket\n"); -- 2.39.2