mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-10 23:56:43 +02:00
Delete UDP stream
This commit is contained in:
parent
40c910104b
commit
22262bd203
5 changed files with 1 additions and 157 deletions
|
@ -27,7 +27,6 @@
|
|||
#include "pipe_stream.hpp"
|
||||
#include "process_stream.hpp"
|
||||
#include "tcp_stream.hpp"
|
||||
#include "udp_stream.hpp"
|
||||
|
||||
|
||||
using namespace std;
|
||||
|
@ -84,10 +83,6 @@ PcmStreamPtr StreamManager::addStream(const std::string& uri)
|
|||
{
|
||||
stream = make_shared<TcpStream>(pcmListener_, ioc_, streamUri);
|
||||
}
|
||||
else if (streamUri.scheme == "experimental.udp")
|
||||
{
|
||||
stream = make_shared<UdpStream>(pcmListener_, ioc_, streamUri);
|
||||
}
|
||||
else
|
||||
{
|
||||
throw SnapException("Unknown stream type: " + streamUri.scheme);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue