You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
627 B
25 lines
627 B
#ifndef ZT1_jniutils_h_ |
|
#define ZT1_jniutils_h_ |
|
#include <jni.h> |
|
#include <ZeroTierOne.h> |
|
|
|
#ifdef __cplusplus |
|
extern "C" { |
|
#endif |
|
|
|
jobject createResultObject(JNIEnv *env, ZT1_ResultCode code); |
|
jobject createVirtualNetworkStatus(JNIEnv *env, ZT1_VirtualNetworkStatus status); |
|
jobject createEvent(JNIEnv *env, ZT1_Event event); |
|
|
|
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 |