This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-libzt/examples/bindings/newscala/ZeroTier.java
2017-10-16 13:10:20 -07:00

7 lines
221 B
Java

package zerotier;
public class ZeroTier
{
public native int ztjni_socket(int family, int type, int protocol);
public int socket(int family, int type, int protocol) { return ztjni_socket(family, type, protocol); }
}