diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-04-23 18:35:50 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-04-23 18:35:50 +0000 |
commit | 58519ae974abe72608af4af8204d28dc3eb082e5 (patch) | |
tree | 43bdd282f49a37797e1a059e1d17822a1d13421f /package/network | |
parent | ae76b2a314ce468d5d3a558248c7775d6922d77e (diff) | |
download | upstream-58519ae974abe72608af4af8204d28dc3eb082e5.tar.gz upstream-58519ae974abe72608af4af8204d28dc3eb082e5.tar.bz2 upstream-58519ae974abe72608af4af8204d28dc3eb082e5.zip |
hostapd: return the frequency to some ubus calls to make integration easier
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36410 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/network')
-rw-r--r-- | package/network/services/hostapd/patches/700-ubus_support.patch | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/package/network/services/hostapd/patches/700-ubus_support.patch b/package/network/services/hostapd/patches/700-ubus_support.patch index 39351ca9e7..b32aefc672 100644 --- a/package/network/services/hostapd/patches/700-ubus_support.patch +++ b/package/network/services/hostapd/patches/700-ubus_support.patch @@ -40,7 +40,7 @@ struct hostapd_data **bss; --- /dev/null +++ b/src/ap/ubus.c -@@ -0,0 +1,354 @@ +@@ -0,0 +1,356 @@ +/* + * hostapd / ubus support + * Copyright (c) 2013, Felix Fietkau <nbd@openwrt.org> @@ -180,6 +180,7 @@ + }; + + blob_buf_init(&b, 0); ++ blobmsg_add_u32(&b, "freq", hapd->iface->freq); + list = blobmsg_open_table(&b, "clients"); + for (sta = hapd->sta_list; sta; sta = sta->next) { + int i; @@ -383,6 +384,7 @@ + blobmsg_add_macaddr(&b, "target", req->mgmt_frame->da); + if (req->frame_info) + blobmsg_add_u32(&b, "signal", req->frame_info->ssi_signal); ++ blobmsg_add_u32(&b, "freq", hapd->iface->freq); + + if (ubus_notify_async(ctx, &hapd->ubus.obj, type, b.head, &ureq.nreq)) + return 0; |