projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Updated instructions for XML Tools.
[wxWidgets.git]
/
src
/
unix
/
dialup.cpp
diff --git
a/src/unix/dialup.cpp
b/src/unix/dialup.cpp
index 67e6150ff99935e0090100711ff2f77ee66daa73..094b0ba406bf708f75f25b546576389631bd7d78 100644
(file)
--- a/
src/unix/dialup.cpp
+++ b/
src/unix/dialup.cpp
@@
-1,11
+1,11
@@
// -*- c++ -*- ////////////////////////////////////////////////////////////////
// Name: src/unix/dialup.cpp
// Purpose: Network related wxWidgets classes and functions
// -*- c++ -*- ////////////////////////////////////////////////////////////////
// Name: src/unix/dialup.cpp
// Purpose: Network related wxWidgets classes and functions
-// Author: Karsten Ball
ü
der
+// Author: Karsten Ball
ü
der
// Modified by:
// Created: 03.10.99
// RCS-ID: $Id$
// Modified by:
// Created: 03.10.99
// RCS-ID: $Id$
-// Copyright: (c) Karsten Ball
ü
der
+// Copyright: (c) Karsten Ball
ü
der
// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
@@
-336,8
+336,7
@@
wxDialUpManagerImpl::Dial(const wxString &isp,
m_DialPId = (int)wxExecute(cmd, false, m_DialProcess);
if(m_DialPId == 0)
{
m_DialPId = (int)wxExecute(cmd, false, m_DialProcess);
if(m_DialPId == 0)
{
- delete m_DialProcess;
- m_DialProcess = NULL;
+ wxDELETE(m_DialProcess);
return false;
}
else
return false;
}
else
@@
-379,8
+378,7
@@
bool wxDialUpManagerImpl::EnableAutoCheckOnlineStatus(size_t nSeconds)
bool rc = m_timer->Start(nSeconds*1000);
if(! rc)
{
bool rc = m_timer->Start(nSeconds*1000);
if(! rc)
{
- delete m_timer;
- m_timer = NULL;
+ wxDELETE(m_timer);
}
return rc;
}
}
return rc;
}
@@
-390,15
+388,14
@@
void wxDialUpManagerImpl::DisableAutoCheckOnlineStatus()
if(m_timer != NULL)
{
m_timer->Stop();
if(m_timer != NULL)
{
m_timer->Stop();
- delete m_timer;
- m_timer = NULL;
+ wxDELETE(m_timer);
}
}
void wxDialUpManagerImpl::SetWellKnownHost(const wxString& hostname, int portno)
{
}
}
void wxDialUpManagerImpl::SetWellKnownHost(const wxString& hostname, int portno)
{
- if(
hostname.length() == 0
)
+ if(
hostname.empty()
)
{
m_BeaconHost = WXDIALUP_MANAGER_DEFAULT_BEACONHOST;
m_BeaconPort = 80;
{
m_BeaconHost = WXDIALUP_MANAGER_DEFAULT_BEACONHOST;
m_BeaconPort = 80;
@@
-407,7
+404,7
@@
void wxDialUpManagerImpl::SetWellKnownHost(const wxString& hostname, int portno)
// does hostname contain a port number?
wxString port = hostname.After(wxT(':'));
// does hostname contain a port number?
wxString port = hostname.After(wxT(':'));
- if(
port.length()
)
+ if(
!port.empty()
)
{
m_BeaconHost = hostname.Before(wxT(':'));
m_BeaconPort = wxAtoi(port);
{
m_BeaconHost = hostname.Before(wxT(':'));
m_BeaconPort = wxAtoi(port);
@@
-611,7
+608,10
@@
wxDialUpManagerImpl::CheckProcNet()
while (fgets(output, 256, f) != NULL)
{
while (fgets(output, 256, f) != NULL)
{
- if ( strstr(output, "eth") ) // network card
+ // Test for the known network interface names
+ if ( strstr(output, "eth")
+ || strstr(output, "wlan")
+ || strstr(output, "ath") )
{
netDevice |= NetDevice_LAN;
}
{
netDevice |= NetDevice_LAN;
}
@@
-645,7
+645,7
@@
wxDialUpManagerImpl::CheckIfconfig()
// first time check for ifconfig location
if ( m_CanUseIfconfig == -1 ) // unknown
{
// first time check for ifconfig location
if ( m_CanUseIfconfig == -1 ) // unknown
{
- static const wxChar *ifconfigLocations[] =
+ static const wxChar *
const
ifconfigLocations[] =
{
wxT("/sbin"), // Linux, FreeBSD, Darwin
wxT("/usr/sbin"), // SunOS, Solaris, AIX, HP-UX
{
wxT("/sbin"), // Linux, FreeBSD, Darwin
wxT("/usr/sbin"), // SunOS, Solaris, AIX, HP-UX
@@
-670,7
+670,7
@@
wxDialUpManagerImpl::CheckIfconfig()
{
wxLogNull ln; // suppress all error messages
{
wxLogNull ln; // suppress all error messages
- wxASSERT_MSG(
m_IfconfigPath.length
(),
+ wxASSERT_MSG(
!m_IfconfigPath.empty
(),
wxT("can't use ifconfig if it wasn't found") );
wxString tmpfile = wxFileName::CreateTempFileName( wxT("_wxdialuptest") );
wxT("can't use ifconfig if it wasn't found") );
wxString tmpfile = wxFileName::CreateTempFileName( wxT("_wxdialuptest") );
@@
-682,9
+682,9
@@
wxDialUpManagerImpl::CheckIfconfig()
defined(__SOLARIS__) || defined (__SUNOS__)
// need to add -a flag
cmd << wxT(" -a");
defined(__SOLARIS__) || defined (__SUNOS__)
// need to add -a flag
cmd << wxT(" -a");
-#elif defined(__LINUX__) || defined(__SGI__)
+#elif defined(__LINUX__) || defined(__SGI__)
|| defined(__OPENBSD__)
// nothing to be added to ifconfig
// nothing to be added to ifconfig
-#elif defined(__FREEBSD__) || defined(__DARWIN__)
+#elif defined(__FREEBSD__) || defined(__DARWIN__)
|| defined(__QNX__)
// add -l flag
cmd << wxT(" -l");
#elif defined(__HPUX__)
// add -l flag
cmd << wxT(" -l");
#elif defined(__HPUX__)
@@
-703,7
+703,7
@@
wxDialUpManagerImpl::CheckIfconfig()
cmd << wxT(" >") << tmpfile << wxT('\'');
/* I tried to add an option to wxExecute() to not close stdout,
so we could let ifconfig write directly to the tmpfile, but
cmd << wxT(" >") << tmpfile << wxT('\'');
/* I tried to add an option to wxExecute() to not close stdout,
so we could let ifconfig write directly to the tmpfile, but
- this does not work. That should be faster, as it doesn
´
t call
+ this does not work. That should be faster, as it doesn
'
t call
the shell first. I have no idea why. :-( (KB) */
if ( wxExecute(cmd,true /* sync */) == 0 )
{
the shell first. I have no idea why. :-( (KB) */
if ( wxExecute(cmd,true /* sync */) == 0 )
{
@@
-723,7
+723,8
@@
wxDialUpManagerImpl::CheckIfconfig()
// dialup device under SunOS/Solaris
hasModem = strstr(output.fn_str(),"ipdptp") != NULL;
hasLAN = strstr(output.fn_str(), "hme") != NULL;
// dialup device under SunOS/Solaris
hasModem = strstr(output.fn_str(),"ipdptp") != NULL;
hasLAN = strstr(output.fn_str(), "hme") != NULL;
-#elif defined(__LINUX__) || defined (__FREEBSD__)
+#elif defined(__LINUX__) || defined (__FREEBSD__) || defined (__QNX__) || \
+ defined(__OPENBSD__)
hasModem = strstr(output.fn_str(),"ppp") // ppp
|| strstr(output.fn_str(),"sl") // slip
|| strstr(output.fn_str(),"pl"); // plip
hasModem = strstr(output.fn_str(),"ppp") // ppp
|| strstr(output.fn_str(),"sl") // slip
|| strstr(output.fn_str(),"pl"); // plip
@@
-747,7
+748,7
@@
wxDialUpManagerImpl::CheckIfconfig()
}
else // could not run ifconfig correctly
{
}
else // could not run ifconfig correctly
{
- m_CanUseIfconfig = 0; // don
´
t try again
+ m_CanUseIfconfig = 0; // don
'
t try again
}
(void) wxRemoveFile(tmpfile);
}
(void) wxRemoveFile(tmpfile);
@@
-799,7
+800,8
@@
wxDialUpManagerImpl::NetConnection wxDialUpManagerImpl::CheckPing()
defined(__LINUX__) || \
defined(__OSF__) || \
defined(__SGI__) || \
defined(__LINUX__) || \
defined(__OSF__) || \
defined(__SGI__) || \
- defined(__VMS)
+ defined(__VMS) || \
+ defined(__QNX__)
cmd << wxT("-c 1 "); // only ping once
#elif defined(__HPUX__)
cmd << wxT("64 1 "); // only ping once (need also specify the packet size)
cmd << wxT("-c 1 "); // only ping once
#elif defined(__HPUX__)
cmd << wxT("64 1 "); // only ping once (need also specify the packet size)