Net::WLAN::IWLib is a low level module for accessing the Linux Wireless
  Extensions from within Perl scripts.

WARNING

I am pretty sure that you want Net::WLAN instead of this module. This is only
the low-level part of that module - though, if you are masochistic enough, you
might be able to use this module as well for everyday tasks.

SYNOPSIS

    my $sock = iw_sockets_open;
    my $config = Net::WLAN::IWLib::wireless_config->new;
    $config->swig_has_essid_set(1);
    $config->swig_essid_on_set(1);
    $config->swig_essid_set($essid);
    if( iw_set_basic_config($sock, $name, $config) < 0){
      die "iw_set_basic_config failed: " . iw_strerror . "\n";
    }
    iw_sockets_close($sock);


DESCRIPTION

Low level Perl module for manipulating Wireless Lan interfaces of your Linux
box.  It mostly serves as the low-level part of a higher level OO module named
Net::WLAN. You should really would use that module for manipulating your
wireless cards. See the example/ directory of this distribution on how to
perform the most important tasks, like setting and getting the configuration
of your cards, scanning and enumerating your wireless interfaces.


COPYRIGHT:

Copyright (C) 2004 by Zoltan feher and Gabor Retvari. All rights
reserved. This program is free software; you can redistribute and/or modify it
under the same terms as Perl itself.

Consult the documentation of the Linux Wireless Extensions library for
copyright information on the IWLIB library.




Download Net::WLAN::IWLib

Back