diff --git a/audio/audio.conf b/audio/audio.conf
index 9414c07..662647c 100644
--- a/audio/audio.conf
+++ b/audio/audio.conf
# If we want to disable support for specific services
# Defaults to supporting the services: HFP, Headset, Sink, Control and Media
-#Disable=Gateway,Source,Socket
+#Disable=Gateway,Source
# SCO routing. Either PCM or HCI (in which case audio is routed to/from ALSA)
# Defaults to HCI
diff --git a/audio/manager.c b/audio/manager.c
index 3eefac6..b7e8c8a 100644
--- a/audio/manager.c
+++ b/audio/manager.c
.sink = TRUE,
.source = FALSE,
.control = TRUE,
- .socket = FALSE,
.media = TRUE,
};
enabled.source = TRUE;
else if (g_str_equal(list[i], "Control"))
enabled.control = TRUE;
- else if (g_str_equal(list[i], "Socket"))
- enabled.socket = TRUE;
else if (g_str_equal(list[i], "Media"))
enabled.media = TRUE;
enabled.source = FALSE;
else if (g_str_equal(list[i], "Control"))
enabled.control = FALSE;
- else if (g_str_equal(list[i], "Socket"))
- enabled.socket = FALSE;
else if (g_str_equal(list[i], "Media"))
enabled.media = FALSE;
}