7 lines
221 B
Java
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); }
|
||
|
|
}
|