3 changed files with 58 additions and 1 deletions
@ -0,0 +1,35 @@
|
||||
#include "ZT1_jniutils.h" |
||||
|
||||
#ifdef __cplusplus |
||||
extern "C" { |
||||
#endif |
||||
|
||||
|
||||
jobject newArrayList(JNIEnv *env) |
||||
{ |
||||
return NULL; |
||||
} |
||||
|
||||
jobject appendItemToArrayList(JNIEnv *env, jobject object) |
||||
{ |
||||
return NULL; |
||||
} |
||||
|
||||
jobject newIPV6Address(JNIEnv *env, char *addr) |
||||
{ |
||||
return NULL; |
||||
} |
||||
|
||||
jobject newIPV4Address(JNIEnv *env, char *addr) |
||||
{ |
||||
return NULL; |
||||
} |
||||
|
||||
jobject newMulticastGroup(JNIEnv *env, const ZT1_MulticastGroup &mc) |
||||
{ |
||||
return NULL; |
||||
} |
||||
|
||||
#ifdef __cplusplus |
||||
} |
||||
#endif |
||||
@ -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…
Reference in new issue