|
|
|
#ifndef NETWORKSTATUS_COMMON_H
|
|
|
|
#define NETWORKSTATUS_COMMON_H
|
|
|
|
|
|
|
|
#include <tqstringlist.h>
|
|
|
|
|
|
|
|
namespace NetworktqStatus
|
|
|
|
{
|
|
|
|
enum EnumtqStatus { NoNetworks = 1, Unreachable, OfflineDisconnected, OfflineFailed, ShuttingDown, Offline, Establishing, Online };
|
|
|
|
enum EnumRequestResult { RequestAccepted = 1, Connected, UserRefused, Unavailable };
|
|
|
|
enum EnumOnDemandPolicy { All, User, None, Permanent };
|
|
|
|
struct Properties
|
|
|
|
{
|
|
|
|
TQString name;
|
|
|
|
// status of the network
|
|
|
|
EnumtqStatus status;
|
|
|
|
// policy for on-demand usage as defined by the service
|
|
|
|
EnumOnDemandPolicy onDemandPolicy;
|
|
|
|
// identifier for the service
|
|
|
|
TQCString service;
|
|
|
|
// indicate that the connection is to 'the internet' - similar to default gateway in routing
|
|
|
|
bool internet;
|
|
|
|
// list of netmasks that the network connects to - overridden by above internet
|
|
|
|
TQStringList netmasks;
|
|
|
|
// for future expansion consider
|
|
|
|
// EnumChargingModel - FlatRate, TimeCharge, VolumeCharged
|
|
|
|
// EnumLinktqStatus - for WLANs - VPOOR, POOR, AVERAGE, GOOD, EXCELLENT
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
TQDataStream & operator>> ( TQDataStream & s, NetworktqStatus::Properties &p );
|
|
|
|
TQDataStream & operator<< ( TQDataStream & s, const NetworktqStatus::Properties p );
|
|
|
|
|
|
|
|
#endif
|