summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorGiacinto Cifelli <gciofono@gmail.com>2018-10-19 13:31:37 +0200
committerDenis Kenzior <denkenz@gmail.com>2018-10-22 11:03:15 -0500
commitb8de6082ece2bfccbca919830272cf04908cec64 (patch)
tree02062b397a9232568439488baf64d7e4eec584b0 /doc
parent16a77f2497a780a0a452b720b793137d9df75440 (diff)
downloadofono-b8de6082ece2bfccbca919830272cf04908cec64.tar.gz
doc: Add additional default attach parameters to LTE
Added 4 properties for handling the type of context and the authentication method, exactly like in any gprs context handling. The properties are named after the equivalent gprs-context one, for compatibility and uniformity. Co-authored-by: Martin Baschin <martin.baschin@googlemail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/lte-api.txt36
1 files changed, 36 insertions, 0 deletions
diff --git a/doc/lte-api.txt b/doc/lte-api.txt
index 8a2a97d9..d214b68a 100644
--- a/doc/lte-api.txt
+++ b/doc/lte-api.txt
@@ -33,3 +33,39 @@ Properties string DefaultAccessPointName [readwrite]
Setting this property to an empty string clears the
default APN from the modem.
+
+ string Protocol [readwrite]
+
+ Holds the protocol for this context. Valid values
+ are: "ip", "ipv6" and "dual". Default value is "ip".
+
+ string AuthenticationMethod [readwrite]
+
+ Sets the Method used for the authentication
+ for the default APN.
+
+ Available values are "none", "pap" and "chap".
+ Default is "none".
+
+ If the AuthenticationMethod is set to 'none',
+ no authentication is performed for the default attach
+ APN. Username and Password properties are ignored,
+ even if containing a valid value. If Username or
+ Password are empty, AuthenticationMethod is implicitly
+ assumed to be set to 'none'.
+
+ If the default APN supports authentication and it
+ fails, then it is up to the network how to proceed.
+ In general LTE access is denied and the modem can
+ fallback to a legacy technology if capable and another
+ radio technology is available.
+
+ string Username [readwrite]
+
+ Holds the username to be used for authentication
+ purposes.
+
+ string Password [readwrite]
+
+ Holds the password to be used for authentication
+ purposes.