I was trying to find the implementation of a private method of the Inet4AddressImpl
class of the java.net
package. I tried both grepcode and the src.zip available in my jdk directory.
The method whose implementation I am looking for in the aforementioned class:
private native boolean isReachable0(byte[] addr, int timeout, byte[] ifaddr, int ttl) throws IOException;
So being a native code I assume it's implementation would be OS dependent. So I just want to know if and where can I find its implementation and of other native methods for that matter !
Thanks