2 * Copyright (C) 2012 Tobias Brunner
3 * Copyright (C) 2012 Giuliano Grassi
4 * Copyright (C) 2012 Ralf Sager
5 * Hochschule fuer Technik Rapperswil
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 * @defgroup libandroidbridge libandroidbridge
21 * @defgroup android_kernel kernel
22 * @ingroup libandroidbridge
24 * @defgroup charonservice charonservice
25 * @{ @ingroup libandroidbridge
28 #ifndef CHARONSERVICE_H_
29 #define CHARONSERVICE_H_
33 typedef struct charonservice_t charonservice_t
;
36 * Public interface of charonservice.
38 * Used to communicate with CharonVpnService via JNI
40 struct charonservice_t
{
43 * Install a bypass policy for the given socket using the protect() Method
44 * of the Android VpnService interface
46 * @param fd socket file descriptor
47 * @param family socket protocol family
48 * @return TRUE if operation successful
50 bool (*bypass_socket
)(charonservice_t
*this, int fd
, int family
);
55 * The single instance of charonservice_t.
57 * Set between JNI calls to initializeCharon() and deinitializeCharon().
59 extern charonservice_t
*charonservice
;
61 #endif /** CHARONSERVICE_H_ @}*/