| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 | 
							- #ifndef ZT1_jniutils_h_
 
- #define ZT1_jniutils_h_
 
- #include <stdio.h>
 
- #include <jni.h>
 
- #include <ZeroTierOne.h>
 
- #ifdef __cplusplus
 
- extern "C" {
 
- #endif
 
- #define LOG_TAG "ZeroTierOneJNI"
 
- #if __ANDROID__
 
- #include <android/log.h>
 
- #define LOGI(...) ((void)__android_log_print(ANDROID_LOG_INFO, LOG_TAG, __VA_ARGS__))
 
- #define LOGD(...) ((void)__android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__))
 
- #define LOGE(...) ((void)__android_log_print(ANDROID_LOG_ERROR, LOG_TAG, __VA_ARGS__))
 
- #else
 
- #define LOGI(...) fprintf(stdout, __VA_ARGS__)
 
- #define LOGD(...) fprintf(stdout, __VA_ARGS__)
 
- #define LOGE(...) fprintf(stdout, __VA_ARGS__)
 
- #endif
 
- jobject createResultObject(JNIEnv *env, ZT1_ResultCode code);
 
- jobject createVirtualNetworkStatus(JNIEnv *env, ZT1_VirtualNetworkStatus status);
 
- jobject createVirtualNetworkType(JNIEnv *env, ZT1_VirtualNetworkType type);
 
- jobject createEvent(JNIEnv *env, ZT1_Event event);
 
- jobject createPeerRole(JNIEnv *env, ZT1_PeerRole role);
 
- jobject createVirtualNetworkConfigOperation(JNIEnv *env, ZT1_VirtualNetworkConfigOperation op);
 
- jobject newArrayList(JNIEnv *env);
 
- bool appendItemToArrayList(JNIEnv *env, jobject array, jobject object);
 
- jobject newInetSocketAddress(JNIEnv *env, const sockaddr_storage &addr);
 
- jobject newInetAddress(JNIEnv *env, const sockaddr_storage &addr);
 
- jobject newMulticastGroup(JNIEnv *env, const ZT1_MulticastGroup &mc);
 
- jobject newPeer(JNIEnv *env, const ZT1_Peer &peer);
 
- jobject newPeerPhysicalPath(JNIEnv *env, const ZT1_PeerPhysicalPath &ppp);
 
- jobject newNetworkConfig(JNIEnv *env, const ZT1_VirtualNetworkConfig &config);
 
- jobject newVersion(JNIEnv *env, int major, int minor, int rev, long featureFlags);
 
- #ifdef __cplusplus
 
- }
 
- #endif
 
- #endif
 
 
  |