aboutsummaryrefslogtreecommitdiff
path: root/cli/mmcli-modem-simple.c
AgeCommit message (Collapse)Author
2012-03-26mmcli: abort certain operations if modem is unlockedAleksander Morgado
Do not try to perform feature/capability specific actions if we're still unlocked, as the modem didn't yet export the feature/capability specific interface. The only interfaces expected while modem is unlocked are the Modem and Simple interfaces, as well as the SIM interface in the SIM object, of course.
2012-03-26mmcli: ensure the modem exports the Simple interface before trying to use itAleksander Morgado
2012-03-16libmm-common: `MMSimpleStatus' won't be considered internal any moreAleksander Morgado
Renamed `MMCommonSimpleProperties' to `MMSimpleStatus', and removed the `MMSimpleStatusProperties' provided in libmm-glib. We'll just use the original one from libmm-common always.
2012-03-16libmm-common: `MMSimpleConnectProperties' won't be considered internal any moreAleksander Morgado
Renamed `MMCommonConnectProperties' to `MMSimpleConnectProperties', and removed the `MMModemSimpleConnectProperties' provided in libmm-glib. We'll just use the original one from libmm-common always.
2012-03-15cli: ensure EOL is added at every error messageAleksander Morgado
2012-03-15cli: use new enums/flags string getters/buildersAleksander Morgado
2012-03-15cli: print properties only if registered in the specific network(s)Aleksander Morgado
If registered in the 3GPP network, print 3GPP-specific properties; and if registered in a CDMA network, print CDMA-specific properties.
2012-03-15cli: include CDMA-specific properties in the simple status reportAleksander Morgado
2012-03-15libmm-glib: prefix with '3gpp' the 3GPP-specific simple status propertiesAleksander Morgado
2012-03-15cli: implement `--simple-status'Aleksander Morgado
2012-03-15cli: new `simple-disconnect' commandAleksander Morgado
This command doesn't expect any argument, it will disconnect all available bearers. You can disconnect specific bearers using `--bearer' and `--disconnect'.
2012-03-15cli: use the new properties handler object in simple Connect()Aleksander Morgado
2012-03-15api: MMModemBand is now an enum, not flagsAleksander Morgado
We don't want to handle bands as flags, in order to avoid the need of 64-bits for the enum. This change implies that setting allowed bands will be done by giving an array of uint32 values, signature "au".
2012-03-15cli: implement actions from the Simple interfaceAleksander Morgado