diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2021-03-22 15:07:26 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2021-03-22 15:31:50 +0100 |
commit | a21233c7abde5572bc40494d1cb9b38976bf8f1c (patch) | |
tree | c9fbab4047ead83fe4f69d76613ac65cb5a1bd04 /introspection/org.freedesktop.ModemManager1.Modem.Simple.xml | |
parent | 634682b602dd51efbda42a8b2e8764b9bb0024e2 (diff) |
api: define bearer settings only in the 'Properties' property
Avoid defining them multiple times in the Modem.CreateBearer(),
Simple.Connect() and Modem3gpp.SetInitialEpsBearerSettings() methods.
Diffstat (limited to 'introspection/org.freedesktop.ModemManager1.Modem.Simple.xml')
-rw-r--r-- | introspection/org.freedesktop.ModemManager1.Modem.Simple.xml | 78 |
1 files changed, 13 insertions, 65 deletions
diff --git a/introspection/org.freedesktop.ModemManager1.Modem.Simple.xml b/introspection/org.freedesktop.ModemManager1.Modem.Simple.xml index e40c6b0c..78f108dc 100644 --- a/introspection/org.freedesktop.ModemManager1.Modem.Simple.xml +++ b/introspection/org.freedesktop.ModemManager1.Modem.Simple.xml @@ -39,16 +39,20 @@ This call may make a large number of changes to modem configuration based on properties passed in. For example, given a PIN-locked, disabled - GSM/UMTS modem, this call may unlock the SIM PIN, alter the access - technology preference, wait for network registration (or force - registration to a specific provider), create a new packet data bearer - using the given "apn", and connect that bearer. + GSM/UMTS modem, this call may unlock the SIM PIN, wait for network + registration (or force registration to a specific provider), create a + new packet data bearer using the given "apn", and connect that bearer. + + The list of allowed properties includes all the ones defined in the + <link linkend="gdbus-property-org-freedesktop-ModemManager1-Bearer.Properties">bearer properties</link> + plus these additional ones that are only applicable to this method, + and only to 3GPP (GSM/UMTS/LTE/5GNR) devices: - Allowed key/value pairs in @properties are: <variablelist> <varlistentry><term><literal>"pin"</literal></term> <listitem> - SIM-PIN unlock code, given as a string value (signature <literal>"s"</literal>). + SIM-PIN unlock code, given as a string value (signature + <literal>"s"</literal>). </listitem> </varlistentry> <varlistentry><term><literal>"operator-id"</literal></term> @@ -57,66 +61,10 @@ given as a string value (signature <literal>"s"</literal>). </listitem> </varlistentry> - <varlistentry><term><literal>"apn"</literal></term> - <listitem> - For GSM/UMTS and LTE devices the APN to use, - given as a string value (signature <literal>"s"</literal>). - </listitem> - </varlistentry> - <varlistentry><term><literal>"ip-type"</literal></term> - <listitem> - For GSM/UMTS and LTE devices the IP addressing type to use, - given as a <link linkend="MMBearerIpFamily">MMBearerIpFamily</link> - value (signature <literal>"u"</literal>). - </listitem> - </varlistentry> - <varlistentry><term><literal>"allowed-auth"</literal></term> - <listitem> - The authentication method to use, given as a - <link linkend="MMBearerAllowedAuth">MMBearerAllowedAuth</link> - value (signature <literal>"u"</literal>). Optional in 3GPP. - </listitem> - </varlistentry> - <varlistentry><term><literal>"user"</literal></term> - <listitem> - User name (if any) required by the network, given as a string - value (signature <literal>"s"</literal>). Optional in 3GPP. - </listitem> - </varlistentry> - <varlistentry><term><literal>"password"</literal></term> - <listitem> - Password (if any) required by the network, given as a string value - (signature <literal>"s"</literal>). Optional in 3GPP. - </listitem> - </varlistentry> - <varlistentry><term><literal>"number"</literal></term> - <listitem> - Number to dial for the data connection, - given as a string value (signature <literal>"s"</literal>). - Deprecated since version 1.10.0. - </listitem> - </varlistentry> - <varlistentry><term><literal>"allow-roaming"</literal></term> - <listitem> - %FALSE to allow only connections to home networks, - given as a boolean value (signature <literal>"b"</literal>). - </listitem> - </varlistentry> - <varlistentry><term><literal>"rm-protocol"</literal></term> - <listitem> - For CDMA devices, the protocol of the Rm interface, given as a - <link linkend="MMModemCdmaRmProtocol">MMModemCdmaRmProtocol</link> - value (signature <literal>"u"</literal>). - </listitem> - </varlistentry> - <varlistentry><term><literal>"multiplex"</literal></term> - <listitem> - Multiplex support requested by the user, given as a - <link linkend="MMBearerMultiplexSupport">MMBearerMultiplexSupport</link> - value (signature <literal>"u"</literal>). Since 1.18. - </listitem> - </varlistentry> </variablelist> + + There are no settings specific to this call that would apply to 3GPP2 + (CDMA/EVDO) devices. --> <method name="Connect"> <arg name="properties" type="a{sv}" direction="in" /> |