jdk.internal.sys.bsd.Ifaddrs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qbicc-rt-java.base Show documentation
Show all versions of qbicc-rt-java.base Show documentation
The Qbicc builder for the java.base JDK module
package jdk.internal.sys.bsd;
import static org.qbicc.runtime.CNative.*;
import static jdk.internal.sys.posix.SysSocket.*;
@include("")
public class Ifaddrs {
public static class struct_ifaddrs extends object {
public ptr ifa_next;
public ptr ifa_name;
public unsigned_int ifa_flags;
public ptr ifa_addr;
public ptr ifa_netmask;
public ptr ifa_dstaddr;
public ptr> ifa_data;
}
public static native c_int getifaddrs(ptr> x);
public static native void freeifaddrs(ptr x);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy