summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorPatrik Flykt <patrik.flykt@linux.intel.com>2012-12-11 16:36:27 +0200
committerPatrik Flykt <patrik.flykt@linux.intel.com>2013-01-04 13:00:38 +0200
commit5fa7b887e94b17a0f75a8d23a2e47b52c7442b80 (patch)
tree7e5a0f0cca7566207a6b7989e00e4778aa3f50bc /doc
parent35f61b1f8f53033a7333b56be18328d426dc24a1 (diff)
downloadconnman-5fa7b887e94b17a0f75a8d23a2e47b52c7442b80.tar.gz
connman-5fa7b887e94b17a0f75a8d23a2e47b52c7442b80.tar.bz2
connman-5fa7b887e94b17a0f75a8d23a2e47b52c7442b80.zip
doc: Remove WiMAX info from documentation
Diffstat (limited to 'doc')
-rw-r--r--doc/overview-api.txt54
-rw-r--r--doc/service-api.txt2
2 files changed, 20 insertions, 36 deletions
diff --git a/doc/overview-api.txt b/doc/overview-api.txt
index 92ce2b90..14fec14c 100644
--- a/doc/overview-api.txt
+++ b/doc/overview-api.txt
@@ -11,8 +11,8 @@ preferences. This is the service list and interface.
The basic idea is that Connection Manager maintains a single flat and sorted
list of all available, preferred or previously used services. A service here
-can be either a Ethernet device, a WiFi network, a WiMAX service provider
-or a remote Bluetooth device (for example a mobile phone).
+can be either a Ethernet device, a WiFi network or a remote Bluetooth device
+(for example a mobile phone).
This list of service is sorted by Connection Manager and there is no need
for the user interface to implement its own sorting. User decisions will
@@ -28,14 +28,10 @@ the order of services in this list.
+---------------------------------------+
| My WiFi AP (strength 80, rsn) |
+---------------------------------------+
- | Clear WiMAX (strength 70) |
- +---------------------------------------+
| Other AP (strength 70, rsn) |
+---------------------------------------+
| Friends AP (strength 70, wep) |
+---------------------------------------+
- | Other WiMAX (strength 50) |
- +---------------------------------------+
If none of the services has been used before the sorting order will be done
with these priorities:
@@ -43,8 +39,8 @@ with these priorities:
1. Ethernet (lower index numbers first)
2. Bluetooth (last used devices first)
3. GSM/UTMS/3G (if SIM card is present, activated and not roaming)
- 3. WiFi/WiMAX (signal strength first, then prefer WiMAX over WiFi,
- then more secure network first)
+ 3. WiFi (signal strength first, then more secure network
+ first)
The Ethernet devices are always sorted first since they are physically built
into the system and will be always present. In cases they are switched off
@@ -57,16 +53,9 @@ do have a signal strength, it is mostly unknown since background scanning
in Bluetooth is too expensive. The choice here is to sort the last used
Bluetooth device before the others.
-The WiFi and WiMAX networks are treated equally since both provide signal
-strength information and networks closer in the proximity should be shown
-before others since it is more likely they are selected first. The signal
-strength value is normalized to 0-100 (effectively a percentage) and allows
-an easy sorting.
-
-If the signal strength is identical then the WiMAX network should be shown
-first since it is a licensed spectrum and more reliable. Also the number
-of WiMAX networks will be smaller than the number of WiFi since that operates
-in an unlicensed spectrum.
+WiFi networks closer in the proximity should be shown first since it is more
+likely they are selected. The signal strength value is normalized to 0-100
+(effectively a percentage) and allows an easy sorting.
WiFi networks with the same signal strength are then sorted by their security
setting. WPA2 encrypted networks should be preferred over WPA/WEP and also
@@ -76,9 +65,9 @@ order.
In the case the WiFi network uses WPS for setup and it is clearly detectable
that a network waits for Connection Manager to connect to it (for example via
a push-to-connect button press on the AP), then this network should be shown
-first before any other WiFi or WiMAX network. The reason here is that the
-user already made a choice via the access point. However this depends on
-technical details if it is possible to detect these situations.
+first before any other WiFi networks. The reason here is that the user already
+made a choice via the access point. However this depends on technical details
+if it is possible to detect these situations.
Service order
@@ -94,10 +83,10 @@ a networking point of view.
Selecting the "My WiFi AP" and successfully connecting to it makes it a
favorite device and it will become an order number bigger than 0. All
order numbers are internally. They are given only to service that are marked
-as favorite. For WiFi, WiMAX and Bluetooth a successful connection attempt
-makes these services automatically a favorite. For Ethernet the plugging
-of a cable makes it a favorite. Disconnecting from a network doesn't remove
-the favorite setting. It is a manual operation and is equal to users pressing
+as favorite. For WiFi and Bluetooth a successful connection attempt makes
+these services automatically a favorite. For Ethernet the plugging of a cable
+makes it a favorite. Disconnecting from a network doesn't remove the favorite
+setting. It is a manual operation and is equal to users pressing
delete/remove button.
+---------------------------------------+
@@ -230,10 +219,6 @@ In case of WiFi this will be the SSID value. The SSID is a binary array and
will be converted into printable form. Unprintable characters are replaced
with spaces.
-For WiMAX networks the provider name like Clear or X-OHM will be used. This
-name either comes directly from the network itself or from a provisioning
-database of the WiMAX service.
-
For Bluetooth the device alias is used. The alias is different since it
can be overwritten by the user via the Bluetooth service. The identification
is still done based on its address, but the display name might change. In
@@ -353,15 +338,14 @@ are more for advanced features and most applications don't need them at all.
The services are represented as a list of object paths. Every of these object
paths contains a service interface. A service is a global collection for
-Ethernet devices, WiFi networks, Bluetooth services, WiMAX providers etc. and
-all these different types are treated equally.
+Ethernet devices, WiFi networks, Bluetooth services etc. and all these
+different types are treated equally.
Every local Ethernet card will show up as exactly one service. WiFi networks
will be grouped by SSID, mode and security setting. Bluetooth PAN and DUN
-service will show up per remote device. For WiMAX the provider name will
-be used for grouping different base stations and access providers. This
-creates a simple list that can be directly displayed to the users since these
-are the exact details users should care about.
+service will show up per remote device. This creates a simple list that can
+be directly displayed to the users since these are the exact details users
+should care about.
properties = manager.GetProperties()
diff --git a/doc/service-api.txt b/doc/service-api.txt
index f72df8b5..b33eb6f1 100644
--- a/doc/service-api.txt
+++ b/doc/service-api.txt
@@ -35,7 +35,7 @@ Methods dict GetProperties() [deprecated]
void Connect()
Connect this service. It will attempt to connect
- WiFi, WiMAX or Bluetooth services.
+ WiFi or Bluetooth services.
For Ethernet devices this method can only be used
if it has previously been disconnected. Otherwise