Question

What would be the "lo" interface equivalent when programming on a windows platform.

for instance when i want to use the following line:

NetworkInterface interf = NetworkInterface.getByName("lo");

or

NetworkInterface interf = NetworkInterface.getByName("eth1");

what would be its equivalent on windows

Was it helpful?

Solution

I'd use loopback or localhost, but the answer greatly depends on context. The reason I suggest these names is because they are present in C:\Windows\System32\drivers\etc\networks and C:\Windows\System32\drivers\etc\hosts respectively.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top