Skip to content

Commit

Permalink
Fix #193 (preferTcp not honored)
Browse files Browse the repository at this point in the history
  • Loading branch information
ibc committed Feb 26, 2018
1 parent 5bba968 commit 70d537f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions worker/include/RTC/WebRtcTransport.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ namespace RTC
{
bool udp{ true };
bool tcp{ true };
bool preferIPv4{ true };
bool preferIPv6{ true };
bool preferUdp{ true };
bool preferTcp{ true };
bool preferIPv4{ false };
bool preferIPv6{ false };
bool preferUdp{ false };
bool preferTcp{ false };
};

public:
Expand Down

0 comments on commit 70d537f

Please sign in to comment.