How can i set a port to listen in on all devices? At the moment it only listens on localhost but refuses connections from all ethernet cards
Create a separate socket for each device and bind it to it.
Or bind it to 0.0.0.0, it will accept connections from all interfaces then.
Thomas
Thomas