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