1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
/*
*
* Connection Manager
*
* Copyright (C) 2012-2013 Intel Corporation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifndef __CONNMAN_AGENT_H
#define __CONNMAN_AGENT_H
#include <stdbool.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* SECTION:agent
* @title: agent primitives
* @short_description: Functions for handling generic agent details
*/
struct connman_agent;
struct connman_agent_driver {
const char *name;
const char *interface;
int priority;
int (*probe) (struct connman_agent *agent);
void (*remove) (struct connman_agent *agent);
void * (*context_ref) (void *user_context);
void (*context_unref) (void *user_context);
};
int connman_agent_driver_register(struct connman_agent_driver *driver);
void connman_agent_driver_unregister(struct connman_agent_driver *driver);
typedef void (* report_error_cb_t) (void *user_context,
bool retry, void *user_data);
int connman_agent_report_error(void *user_context, const char *path,
const char *error,
report_error_cb_t callback,
const char *dbus_sender, void *user_data);
int connman_agent_register(const char *sender, const char *path);
int connman_agent_unregister(const char *sender, const char *path);
void connman_agent_cancel(void *user_context);
typedef void (*agent_queue_cb)(DBusMessage *reply, void *user_data);
int connman_agent_queue_message(void *user_context,
DBusMessage *msg, int timeout,
agent_queue_cb callback, void *user_data,
void *agent_data);
void *connman_agent_get_info(const char *dbus_sender, const char **sender,
const char **path);
#ifdef __cplusplus
}
#endif
#endif /* __CONNMAN_TECHNOLOGY_H */
|