mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-30 08:51:04 +02:00
lib/libiw: add libiw from wireless tools v29, and wrapper to scan wlan networks
Origin commit data
------------------
Branch: ni/coolstream
Commit: 9a40a9f740
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-11-01 (Fri, 01 Nov 2013)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
36
lib/libiw/iwscan.h
Normal file
36
lib/libiw/iwscan.h
Normal file
@@ -0,0 +1,36 @@
|
||||
/*
|
||||
Copyright (C) 2013 CoolStream International Ltd
|
||||
|
||||
License: GPLv2
|
||||
|
||||
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;
|
||||
|
||||
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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
|
||||
#ifndef _IWSCAN_H_
|
||||
#define _IWSCAN_H_
|
||||
|
||||
#include <vector>
|
||||
#include <string>
|
||||
|
||||
struct wlan_network
|
||||
{
|
||||
std::string ssid;
|
||||
int encrypted;
|
||||
std::string channel;
|
||||
std::string qual;
|
||||
wlan_network(): encrypted(0) {}
|
||||
};
|
||||
|
||||
bool get_wlan_list(std::string dev, std::vector<wlan_network> &networks);
|
||||
#endif
|
Reference in New Issue
Block a user