Source for file Config.php
Documentation is available at Config.php
* Configuration settings of a wifi network interface.
* @author Christian Weiske <cweiske@php.net>
* If the interface is activated.
* Some notebooks have a button which deactivates wifi, this is recognized here.
* Note that this setting can't be read by all drivers, and so
* it's "true" if it can't be determined. You can be sure that it's deactivated
* if this setting is false, but not that it's activated if it's true
* MAC address of the associated access point.
* If the interface is connected to an access point or an ad-hoc network.
* Can be "master" or "ad-hoc" (without quotes)
* The nickname which the interface (computer) uses.
* Something like a computer name
* Noise level in dBm - how much the signal is disturbed
* Other packets lost in relation with specific wireless operations.
var $packages_invalid_misc = 0;
* Number of periodic beacons from the Cell or the Access Point we have
* missed. Beacons are sent at regular intervals to maintain the cell
* coordination, failure to receive them usually indicates that the card
var $packages_missed_beacon = 0;
* Number of packets that the hardware was unable to decrypt.
* This can be used to detect invalid encryption
var $packages_rx_invalid_crypt = null;
* Number of packets for which the hardware was not able to properly
* re-assemble the link layer fragments (most likely
var $packages_rx_invalid_frag = null;
* Number of packets received with a different NWID or ESSID.
* Used to detect configuration problems or adjacent
* network existence (on the same frequency).
var $packages_rx_invalid_nwid = null;
* Number of packages that needed to be re-submitted repeatedly again
* and again, because no ACK was received for them.
* You have a bad connection or are connecting long distance.
var $packages_tx_excessive_retries = null;
* Power setting of the interface.
* Protocol version which is used for connection.
* example: "IEEE 802.11g" without quotes
* The bit rate of the connection.
* Signal strength in dBm.
* "Service Set IDentifier" of the cell which identifies current network.
* Max. 32 alphanumeric characters
* example: "My Network" (without quotes)
Documentation generated on Mon, 11 Mar 2019 15:05:03 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|