From a708c72dfa5b8fc7591635e287587adad147ab8d Mon Sep 17 00:00:00 2001 From: Lann Martin Date: Thu, 7 May 2020 22:56:54 -0400 Subject: [PATCH] Fix struct name in zts_get_rfc_*_addr --- src/Controls.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Controls.cpp b/src/Controls.cpp index b8ea3cc..549b479 100644 --- a/src/Controls.cpp +++ b/src/Controls.cpp @@ -440,7 +440,7 @@ int zts_deorbit(uint64_t moonWorldId) #ifdef SDK_JNI #endif -int zts_get_6plane_addr(struct sockaddr_storage *addr, const uint64_t nwid, const uint64_t nodeId) +int zts_get_6plane_addr(struct zts_sockaddr_storage *addr, const uint64_t nwid, const uint64_t nodeId) { if (!addr || !nwid || !nodeId) { return ZTS_ERR_ARG; @@ -451,7 +451,7 @@ int zts_get_6plane_addr(struct sockaddr_storage *addr, const uint64_t nwid, cons return ZTS_ERR_OK; } -int zts_get_rfc4193_addr(struct sockaddr_storage *addr, const uint64_t nwid, const uint64_t nodeId) +int zts_get_rfc4193_addr(struct zts_sockaddr_storage *addr, const uint64_t nwid, const uint64_t nodeId) { if (!addr || !nwid || !nodeId) { return ZTS_ERR_ARG;