summaryrefslogtreecommitdiff
path: root/openvpn/src/openvpn/jniglue.h
blob: ea60a7189b82347fd1fa271fb825043ebb68fdfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
//  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);
void android_set_dns(const char* dns);
#endif