diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2018-08-08 15:14:28 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2018-08-08 21:46:28 +0200 |
commit | 7e6b4d7aa942dfff996a12ccdc769085058056d0 (patch) | |
tree | 4cb6b99ba88c9ee6941481f4aad1bf66c8822b2b /introspection | |
parent | f58a652578812809e14f0cc9fb82d6b2633a331e (diff) |
api,location: give Tracking Area Code field in 3GPP location info
The "location area code" field is given in GSM/UMTS networks
exclusively. LTE networks use the concept of "tracking area code"
instead.
This patch updates the Location interface to Provide separate fields
for LAC and TAC, instead of giving TAC values in the LAC field.
Diffstat (limited to 'introspection')
-rw-r--r-- | introspection/org.freedesktop.ModemManager1.Modem.Location.xml | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/introspection/org.freedesktop.ModemManager1.Modem.Location.xml b/introspection/org.freedesktop.ModemManager1.Modem.Location.xml index c38f428f..fa51a6e2 100644 --- a/introspection/org.freedesktop.ModemManager1.Modem.Location.xml +++ b/introspection/org.freedesktop.ModemManager1.Modem.Location.xml @@ -143,7 +143,7 @@ <listitem> <para> Devices supporting this - capability return a string in the format <literal>"MCC,MNC,LAC,CI"</literal> (without the + capability return a string in the format <literal>"MCC,MNC,LAC,CI,TAC"</literal> (without the quotes of course) where the following applies: </para> <variablelist> @@ -163,10 +163,10 @@ </varlistentry> <varlistentry><term><literal>LAC</literal></term> <listitem> - This is the two-byte Location Area Code of the base station with - which the mobile is registered, in upper-case hexadecimal format - without leading zeros, as specified in 3GPP TS 27.007 section - 10.1.19. e.g. <literal>"84CD"</literal>. + This is the two-byte Location Area Code of the GSM/UMTS base + station with which the mobile is registered, in upper-case + hexadecimal format without leading zeros, as specified in + 3GPP TS 27.007. E.g. <literal>"84CD"</literal>. </listitem> </varlistentry> <varlistentry><term><literal>CI</literal></term> @@ -177,6 +177,14 @@ e.g. <literal>"2BAF"</literal> or <literal>"D30156"</literal>. </listitem> </varlistentry> + <varlistentry><term><literal>TAC</literal></term> + <listitem> + This is the two-byte Location Area Code of the LTE base + station with which the mobile is registered, in upper-case + hexadecimal format without leading zeros, as specified in + 3GPP TS 27.007. E.g. <literal>"6FFE"</literal>. + </listitem> + </varlistentry> </variablelist> <para> The entire string may only be composed of the ASCII digits <literal>[0-9]</literal>, |