about summary refs log tree commit homepage
path: root/bin/dtas-mpd-emu
diff options
context:
space:
mode:
Diffstat (limited to 'bin/dtas-mpd-emu')
-rwxr-xr-xbin/dtas-mpd-emu11
1 files changed, 11 insertions, 0 deletions
diff --git a/bin/dtas-mpd-emu b/bin/dtas-mpd-emu
new file mode 100755
index 0000000..d95d545
--- /dev/null
+++ b/bin/dtas-mpd-emu
@@ -0,0 +1,11 @@
+#!/usr/bin/env ruby
+# Copyright (C) 2015 all contributors <dtas-all@nongnu.org>
+# License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt)
+
+# MPD protocol emulation proxy in front of dtas-player
+require 'socket'
+require 'dtas/mpd_emu_client'
+require 'dtas/server_loop'
+l = TCPServer.new('127.0.0.1', 2100)
+svc = DTAS::ServerLoop.new([l], DTAS::MpdEmuClient)
+svc.run_forever