Skip to content

Commit

Permalink
Change TTL to 20 (same as LightJams)
Browse files Browse the repository at this point in the history
  • Loading branch information
HakanL committed Dec 3, 2024
1 parent 04fac9b commit 197a9f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Haukcode.sACN/SACNClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ private void ConfigureSendSocket(Socket socket)
socket.DontFragment = true;
socket.MulticastLoopback = false;

// Only join local LAN group
socket.SetSocketOption(SocketOptionLevel.IP, SocketOptionName.MulticastTimeToLive, 1);
// Only local LAN group
socket.SetSocketOption(SocketOptionLevel.IP, SocketOptionName.MulticastTimeToLive, 20);
}

public IPEndPoint LocalEndPoint => this.localEndPoint;
Expand Down

0 comments on commit 197a9f7

Please sign in to comment.