-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathnode.h
103 lines (80 loc) · 2.21 KB
/
node.h
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License.
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
*
* Copyright (C) 2020 embedd.ch
* Copyright (C) 2020 Felix Fietkau <[email protected]>
* Copyright (C) 2020 John Crispin <[email protected]>
*/
#ifndef __APMGR_NODE_H
#define __APMGR_NODE_H
#include "usteer.h"
enum local_req_state {
REQ_IDLE,
REQ_CLIENTS,
REQ_STATUS,
REQ_RRM_SET_LIST,
REQ_RRM_GET_OWN,
__REQ_MAX
};
struct usteer_local_node {
struct usteer_node node;
struct ubus_subscriber ev;
struct uloop_timeout update;
const char *iface;
int ifindex;
int wiphy;
struct ubus_request req;
struct uloop_timeout req_timer;
int req_state;
uint32_t obj_id;
float load_ewma;
int load_thr_count;
uint64_t time, time_busy;
struct kvlist node_info;
struct uloop_timeout bss_tm_queries_timeout;
struct list_head bss_tm_queries;
struct {
bool present;
struct uloop_timeout update;
} nl80211;
struct {
struct ubus_request req;
bool req_pending;
bool status_complete;
} netifd;
};
struct interface;
struct usteer_remote_host {
struct avl_node avl;
struct list_head nodes;
struct blob_attr *host_info;
char *addr;
};
struct usteer_remote_node {
struct list_head list;
struct list_head host_list;
const char *name;
struct usteer_remote_host *host;
struct usteer_node node;
int check;
};
extern struct avl_tree local_nodes;
extern struct list_head remote_nodes;
extern struct avl_tree remote_hosts;
#define for_each_local_node(node) \
avl_for_each_element(&local_nodes, node, avl) \
if (!node->disabled)
#define for_each_remote_node(rn) \
list_for_each_entry(rn, &remote_nodes, list)
#endif