2 * Copyright (C) 2010 Martin Willi
3 * Copyright (C) 2010 Tobias Brunner
4 * Hochschule fuer Technik Rapperswil
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 * @defgroup android_handler android_handler
22 #ifndef ANDROID_HANDLER_H_
23 #define ANDROID_HANDLER_H_
25 #include <attributes/attribute_handler.h>
27 typedef struct android_handler_t android_handler_t
;
30 * Android specific DNS attribute handler.
32 struct android_handler_t
{
35 * Implements attribute_handler_t.
37 attribute_handler_t handler
;
40 * Destroy a android_handler_t.
42 void (*destroy
)(android_handler_t
*this);
46 * Create a android_handler instance.
48 android_handler_t
*android_handler_create();
50 #endif /** ANDROID_HANDLER_H_ @}*/