summaryrefslogtreecommitdiff
path: root/src/nm-device-modem.c
AgeCommit message (Collapse)AuthorFilesLines
2010-05-24modem: fix WWAN hardware enable state tracking (rh #591622)Dan Williams1-0/+12
2010-05-03core: allow selective failure of IP configuration (rh #567978)Dan Williams1-1/+7
As long as at least one IP config method completes, and as long as methods that the user required to complete do complete, allow the connection to complete.
2010-04-07mobile-broadband: update loggingDan Williams1-4/+4
2010-03-25modem: consolidate common modem code into NMDeviceModemDan Williams1-6/+396
2010-03-25modem: remove debugging printfDan Williams1-1/+0
2010-03-25modem: fix modem type checking for various operationsDan Williams1-0/+64
After the DUN branch merge (I think?) a number of NM_IS_MODEM calls were left around which now always return FALSE since NMDeviceCdma and NMDeviceGsm aren't subclasses of NMModem anymore. But we still need generic "is this a modem subclass" checks in a few places, so add a modem base class that both the GSM and CDMA device classes inherit from and use that. Plus, we want to consolidate a ton of the common code in nm-device-gsm.c and nm-device-cdma.c into the base class in the future anyway.