mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-26 15:02:50 +02:00
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
37 lines
1.0 KiB
C++
37 lines
1.0 KiB
C++
/*
|
|
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
|