NetworkManager/src/modem-manager
2013-06-25 09:52:12 +02:00
..
nm-modem-broadband.c modem-manager: read 'SupportedCapabilities' instead of 'ModemCapabilities' (bgo #701668) 2013-06-05 12:59:32 -05:00
nm-modem-broadband.h modem-manager: consolidate capabilities loading 2013-06-03 13:00:04 -05:00
nm-modem-manager.c mobile: move old MM modem properties parsing in NMModemOld 2013-06-03 12:59:49 -05:00
nm-modem-manager.h modem-manager, manager: avoid calling G_TYPE_INSTANCE_GET_PRIVATE() often 2012-11-21 11:48:25 -06:00
nm-modem-old-types.h mobile: move and rename old MM modem state enum 2013-06-03 12:59:49 -05:00
nm-modem-old.c mobile: don't fail in old MM code when using deprecated functions 2013-06-05 12:42:12 -05:00
nm-modem-old.h modem-manager: consolidate capabilities loading 2013-06-03 13:00:04 -05:00
nm-modem.c core: use nm-platform for route management 2013-06-25 09:52:12 +02:00
nm-modem.h modem-manager: consolidate capabilities loading 2013-06-03 13:00:04 -05:00
README mobile: rename old MM bits to clarify that they're for old ModemManager 2013-06-03 12:59:48 -05:00

ModemManager integration is organized as follows:


Common source
********************************************************************************

 * nm-modem.[h|c]:
      Defines the basic `NMModem' object. The core NetworkManager implementation
      will use this interface exclusively, regardless of the real final type of
      the modem object.

 * nm-modem-manager.[h|c]:
      Defines the `NMModemManager' object, which takes care of listening to
      signals from the DBus inteface notifying about added or removed modems.
      It also takes care of creating proper `NMModem' objects from the
      information retrieved from the DBus interface.


ModemManager 0.7 integration
********************************************************************************

 * nm-modem-broadband.[h|c]:
      Defines the `NMModemBroadband' object, which is a subclass of `NMModem'.
      This object handles both 3GPP and 3GPP2 modems exposed in the new
      `ModemManager1' interface.


ModemManager 0.4/0.5/0.6 integration
********************************************************************************

 * nm-modem-old-types.h:
      Defines helper types to use with the (old) ModemManager DBus API.

 * nm-modem-old.[h|c]:
      Defines the `NMModemGeneric' object. All modem objects based on the old
      ModemManager interface are subclasses of this one.

 * nm-modem-gsm.[h|c]:
      Defines the `NMModemGsm' object, which is a subclass of `NMModemGeneric'.
      This object handles 3GPP-specific (GSM, UMTS, HSPA, LTE) modems.

 * nm-modem-cdma.[h|c]:
      Defines the `NMModemCdma' object, which is a subclass of `NMModemGeneric'.
      This object handles 3GPP2-specific modems (CDMA, EV-DO).