mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 06:57:51 +00:00
22c9157231
Add somewhat cosmetic changes to the RFKILL interface used between the management layer and the driver library to make the intent clear. Issue #4861.
48 lines
820 B
C++
48 lines
820 B
C++
/*
|
|
* \brief RFKILL interface
|
|
* \author Josef Soentgen
|
|
* \date 2018-07-11
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2018 Genode Labs GmbH
|
|
*
|
|
* This file is distributed under the terms of the GNU General Public License
|
|
* version 2.
|
|
*/
|
|
|
|
#ifndef _WIFI__RFKILL_H_
|
|
#define _WIFI__RFKILL_H_
|
|
|
|
#include <util/interface.h>
|
|
|
|
namespace Wifi {
|
|
|
|
/*
|
|
* FD used to poll RFKILL state from the supplicant.
|
|
*/
|
|
enum { RFKILL_FD = 42, };
|
|
|
|
struct Rfkill_notification_handler : Genode::Interface
|
|
{
|
|
virtual void rfkill_notify() = 0;
|
|
};
|
|
|
|
void rfkill_establish_handler(Rfkill_notification_handler &);
|
|
|
|
/**
|
|
* Query current RFKILL state
|
|
*/
|
|
bool rfkill_blocked();
|
|
|
|
/**
|
|
* Set RFKILL state from the frontend
|
|
*
|
|
* May be only called from an EP context.
|
|
*/
|
|
void set_rfkill(bool);
|
|
|
|
} /* namespace Wifi */
|
|
|
|
#endif /* _WIFI__RFKILL_H_ */
|