author | mickeyl <mickeyl> | 2004-05-03 09:40:07 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-05-03 09:40:07 (UTC) |
commit | fb6f93892d4d0e0471d62f5b5ab6d9bdef0a5e76 (patch) (side-by-side diff) | |
tree | 9ff1498eddd22a29df1639abb66b863ac5d36931 /libopie2/opienet/ostation.cpp | |
parent | d65575b75d8b755e27a1b7c655ad464fc417d093 (diff) | |
download | opie-fb6f93892d4d0e0471d62f5b5ab6d9bdef0a5e76.zip opie-fb6f93892d4d0e0471d62f5b5ab6d9bdef0a5e76.tar.gz opie-fb6f93892d4d0e0471d62f5b5ab6d9bdef0a5e76.tar.bz2 |
remove the OPIE_WE_VERSION crap. this was a step into the wrong direction.
remove the wireless.h user headers also. we are doomed to use the kernel
ones until Jean himself provides user headers. As a nice side effect,
the automatic WE_VERSION detected has been removed. It was too weak anyway,
since e.g. the handhelds.org community updated kernel 2.4.19 to WE V16
about 14 months ago...
Diffstat (limited to 'libopie2/opienet/ostation.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r-- | libopie2/opienet/ostation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libopie2/opienet/ostation.cpp b/libopie2/opienet/ostation.cpp index 140b924..ce0995b 100644 --- a/libopie2/opienet/ostation.cpp +++ b/libopie2/opienet/ostation.cpp @@ -1,72 +1,72 @@ /* This file is part of the Opie Project Copyright (C) 2003 by Michael 'Mickey' Lauer <mickey@Vanille.de> =. .=l. .>+-= _;:, .> :=|. This program is free software; you can .> <`_, > . <= redistribute it and/or modify it under :`=1 )Y*s>-.-- : the terms of the GNU Library General Public .="- .-=="i, .._ License as published by the Free Software - . .-<_> .<> Foundation; either version 2 of the License, ._= =} : or (at your option) any later version. .%`+i> _;_. .i_,=:_. -<s. 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 ..}^=.= = ; Library General Public License for more ++= -. .` .: details. : = ...= . :.=- -. .:....=;==+<; You should have received a copy of the GNU -_. . . )=. = Library General Public License along with -- :-=` this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include <opie2/ostation.h> #include <opie2/odebug.h> using namespace Opie::Core; namespace Opie { namespace Net { /*====================================================================================== * OStation *======================================================================================*/ OStation::OStation() { odebug << "OStation::OStation()" << oendl; type = "<unknown>"; macAddress = OMacAddress::unknown; ssid = "<unknown>"; channel = 0; apAddress = OMacAddress::unknown; } OStation::~OStation() { odebug << "OStation::~OStation()" << oendl; } void OStation::dump() { odebug << "------- OStation::dump() ------------" << oendl; qDebug( "type: %s", (const char*) type ); qDebug( "mac: %s", (const char*) macAddress.toString() ); qDebug( "ap: %s", (const char*) apAddress.toString() ); qDebug( "ip: %s", (const char*) ipAddress.toString() ); } } -}
\ No newline at end of file +} |