summaryrefslogtreecommitdiffstats
path: root/ubus.h
blob: 89534a70e37cc1cf3c80945a85e21e2ab94c808b (plain)
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
/*
 * netifd - network interface daemon
 * Copyright (C) 2012 Felix Fietkau <nbd@openwrt.org>
 *
 * 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.
 */
#ifndef __NETIFD_UBUS_H
#define __NETIFD_UBUS_H

struct wireless_device;
typedef void (*procd_data_cb)(struct blob_attr *data);

extern struct ubus_context *ubus_ctx;

int netifd_ubus_init(const char *path);
void netifd_ubus_done(void);

int netifd_extdev_invoke(uint32_t id, const char *method,
        struct blob_attr *msg, ubus_data_handler_t data_cb, void *data);
void netifd_ubus_add_interface(struct interface *iface);
void netifd_ubus_remove_interface(struct interface *iface);
void netifd_ubus_interface_event(struct interface *iface, bool up);
void netifd_ubus_interface_notify(struct interface *iface, bool up);
void netifd_ubus_device_notify(const char *event, struct blob_attr *data, int timeout);
void netifd_ubus_get_procd_data(const char *type, procd_data_cb cb);
void netifd_ubus_wireless_notify(struct wireless_device *wdev, bool up);

#endif