| Ekahau documentation | Contained in the Ekahau distribution. |
Ekahau::Response::DeviceProperties - Properties of a device tracked by Ekahau
Contains the properties of a device visible to Ekahau.
Generally you will not want to construct these objects yourself; they are created by Ekahau::Response, and use its constructor.
Inherited from Ekahau::Response::get_props. Returns a hash
containing the values for the list of Properties in
@prop_names. If @prop_names is empty, all properties will be
returned.
Inherited from Ekahau::Response::get_prop. Returns the value for
one of this object's Properties, specified by $prop_name. If
no property named $prop_name exists, undef is returned.
Returns the identifier for this device, which can be used to start or stop tracking.
Returns the string DeviceProperties, to identify the type of this object.
Properties can be retreived with get_prop or get_props. The list of properties below may not be complete, and not all properties will be available for all objects. Property names are case-sensitive.
The model of wireless card contained in the device.
The name of the Ekahau driver used on the device.
The MAC address of the device.
The network name of the device.
The IP address of the device.
Scott Gifford <gifford@umich.edu>, <sgifford@suspectclass.com>
Copyright (C) 2005 The Regents of the University of Michigan.
See the file LICENSE included with the distribution for license information.
Ekahau::Response, Ekahau::DeviceList (Ekahau::DeviceList), Ekahau::Base.
| Ekahau documentation | Contained in the Ekahau distribution. |
package Ekahau::Response::DeviceProperties; use base 'Ekahau::Response'; our $VERSION=Ekahau::Response::VERSION; # Written by Scott Gifford <gifford@umich.edu> # Copyright (C) 2004 The Regents of the University of Michigan. # See the file LICENSE included with the distribution for license # information. use strict; use warnings;
# Internal method sub init { warn "Created Ekahau::Response::DeviceProperties object\n" if ($ENV{VERBOSE}); }
sub device_id { my $self = shift; return $self->{args}[0]; }
sub type { 'DeviceProperties'; }
1;