diff options
Diffstat (limited to 'openvpn/src/openvpn/jniglue.h')
-rw-r--r-- | openvpn/src/openvpn/jniglue.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/openvpn/src/openvpn/jniglue.h b/openvpn/src/openvpn/jniglue.h new file mode 100644 index 00000000..cb3ae410 --- /dev/null +++ b/openvpn/src/openvpn/jniglue.h @@ -0,0 +1,19 @@ +// +// jniglue.h +// xcopenvpn +// +// Created by Arne Schwabe on 29.03.12. +// Copyright (c) 2012 Universität Paderborn. All rights reserved. +// + +#ifndef xcopenvpn_jniglue_h +#define xcopenvpn_jniglue_h + +void testmsg(char* m1, ...); +void addRouteInformation(const char* dest, const char* mask, const char* gw); +void addInterfaceInformation(int mtu,const char* ifconfig_local, const char* ifconfig_remote); +void android_openvpn_log(int level,const char* prefix,const char* prefix_sep,const char* m1); +void android_openvpn_exit(int status); + + +#endif |