5 * Copyright (C) 2007-2010 Intel Corporation. All rights reserved.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 #ifndef __CONNMAN_TECHNOLOGY_H
23 #define __CONNMAN_TECHNOLOGY_H
25 #include <connman/service.h>
33 * @title: technology premitives
34 * @short_description: Functions for handling technology details
37 struct connman_technology;
39 void connman_technology_tethering_notify(struct connman_technology *technology,
40 connman_bool_t enabled);
42 struct connman_technology_driver {
44 enum connman_service_type type;
46 int (*probe) (struct connman_technology *technology);
47 void (*remove) (struct connman_technology *technology);
48 void (*add_interface) (struct connman_technology *technology,
49 int index, const char *name,
51 void (*remove_interface) (struct connman_technology *technology,
53 int (*set_tethering) (struct connman_technology *technology,
54 const char *bridge, connman_bool_t enabled);
57 int connman_technology_driver_register(struct connman_technology_driver *driver);
58 void connman_technology_driver_unregister(struct connman_technology_driver *driver);
64 #endif /* __CONNMAN_TECHNOLOGY_H */