Open
Description
The former is a linux only piece of code. Can't even import fctnl. I don't know exactly what is the equivalent code yet. Problem is in here:
https://github.com/ros/ros/blob/groovy-devel/core/roslib/src/roslib/network.py
Why did we not have this problem in fuerte though? There is branching there:
if _use_netifaces:
# maybe this one got hit.
elif _is_unix_like_platform():
# fcntl code
else():
# single interface fallback
- Q) Why is windows falling into _is_unix_like_platform()?
- Q) Maybe it fell into the first option in fuerte?