Closed masanoji closed 8 months ago
Hi, The Channels property in the RtpTcpTransport.cs file is public PortCouple Channels => new(ControlChannel, DataChannel); not public PortCouple Channels => new(DataChannel, ControlChannel); is it not?
public PortCouple Channels => new(ControlChannel, DataChannel);
public PortCouple Channels => new(DataChannel, ControlChannel);
Thanks
Hi, The Channels property in the RtpTcpTransport.cs file is
public PortCouple Channels => new(ControlChannel, DataChannel);
notpublic PortCouple Channels => new(DataChannel, ControlChannel);
is it not?