api call for QueryACNVersion
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
Dan Ballard 2021-06-06 10:40:58 -07:00
parent 84d85b7694
commit 62a55a6fec
1 changed files with 9 additions and 0 deletions

9
lib.go
View File

@ -570,6 +570,15 @@ func ResetTor() {
globalACN.Restart()
}
//export c_QueryACNVersion
func c_QueryACNVersion() {
QueryACNVersion()
}
func QueryACNVersion() {
application.QueryACNVersion()
}
//export c_CreateGroup
func c_CreateGroup(profile_ptr *C.char, profile_len C.int, server_ptr *C.char, server_len C.int, name_ptr *C.char, name_len C.int) {
profile := C.GoStringN(profile_ptr, profile_len)