mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-22 22:32:22 +00:00
4906f8e848
Signed-off-by: Grant Limberg <glimberg@gmail.com>
21 lines
431 B
C
21 lines
431 B
C
#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 |