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/scala/libzt.scala

13 lines
264 B
Scala
Raw Normal View History

2017-10-16 13:40:05 -07:00
class ZeroTier {
@native def ztjni_socket(socket_family: Int, socket_type: Int, protocol: Int): Int
}
object ZeroTier extends App {
System.loadLibrary("zt")
val libzt = new ZeroTier
val fd = libzt.ztjni_socket(2, 1, 0)
println(s"zts_socket(): $fd")
}