You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.2 KiB
34 lines
1.2 KiB
#ifndef NETWORKSTATUS_COMMON_H
|
|
#define NETWORKSTATUS_COMMON_H
|
|
|
|
#include <tqstringlist.h>
|
|
|
|
namespace NetworkStatus
|
|
{
|
|
enum EnumStatus { 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
|
|
EnumStatus 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
|
|
// EnumLinkStatus - for WLANs - VPOOR, POOR, AVERAGE, GOOD, EXCELLENT
|
|
};
|
|
}
|
|
|
|
TQDataStream & operator>> ( TQDataStream & s, NetworkStatus::Properties &p );
|
|
TQDataStream & operator<< ( TQDataStream & s, const NetworkStatus::Properties p );
|
|
|
|
#endif
|