mirror of
https://github.com/ZeroTier/ZeroTierOne
synced 2025-07-16 10:03:14 -07:00
added stub utility functions for creating ArrayLists, appending items to ArrayLists, creating InetAddress objects, and MulticastGroup objects
Signed-off-by: Grant Limberg <glimberg@gmail.com>
This commit is contained in:
parent
fa9d42b7e5
commit
4906f8e848
3 changed files with 58 additions and 1 deletions
21
java/jni/ZT1_jniutils.h
Normal file
21
java/jni/ZT1_jniutils.h
Normal file
|
@ -0,0 +1,21 @@
|
|||
#ifndef ZT1_jniutils_h_
|
||||
#define ZT1_jniutils_h_
|
||||
#include <jni.h>
|
||||
#include <ZeroTierOne.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
jobject newArrayList(JNIEnv *env);
|
||||
jobject appendItemToArrayList(JNIEnv *env, jobject object);
|
||||
|
||||
jobject newIPV6Address(JNIEnv *env, char *addr);
|
||||
jobject newIPV4Address(JNIEnv *env, char *addr);
|
||||
|
||||
jobject newMulticastGroup(JNIEnv *env, const ZT1_MulticastGroup &mc);
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue