Skip to content

Commit

Permalink
Bind to localhost only, not any/all addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
Dewb committed Apr 20, 2024
1 parent 16827b0 commit 31f0723
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/serialosc/SerialOsc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ void SerialOsc::start(Listener* listener)
try
{
listenSocket = new UdpListeningReceiveSocket(
IpEndpointName(IpEndpointName::ANY_ADDRESS, tempPort),
IpEndpointName("localhost", tempPort),
this);

listenPort = tempPort;
Expand Down

0 comments on commit 31f0723

Please sign in to comment.