summaryrefslogtreecommitdiffstats
path: root/src/common.c
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2010-10-15 07:05:37 -0500
committerDenis Kenzior <denkenz@gmail.com>2010-10-15 07:05:37 -0500
commit5fe4694b21a97bfb76503724581321d8ee9b4607 (patch)
treec34760b49ce8c1054363a2ea62e405f28ca828ff /src/common.c
parent0564176a9ca8d6db1c513bc0dde998f72979b841 (diff)
downloadofono-5fe4694b21a97bfb76503724581321d8ee9b4607.tar.bz2
common: Update the basic services in comments
Diffstat (limited to 'src/common.c')
-rw-r--r--src/common.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/common.c b/src/common.c
index 91892bb1..d19c7f17 100644
--- a/src/common.c
+++ b/src/common.c
@@ -342,19 +342,19 @@ int mmi_service_code_to_bearer_class(int code)
case 20:
cls = BEARER_CLASS_DATA_ASYNC | BEARER_CLASS_DATA_SYNC;
break;
- /* According to 22.030: All Async */
+ /* According to 22.030: All Async (7) */
case 21:
- /* According to 22.030: All Data Async */
+ /* According to 22.030: All Data Async (7)*/
case 25:
cls = BEARER_CLASS_DATA_ASYNC;
break;
- /* According to 22.030: All Sync */
+ /* According to 22.030: All Sync (8) */
case 22:
- /* According to 22.030: All Data Sync */
+ /* According to 22.030: All Data Sync (8) */
case 24:
cls = BEARER_CLASS_DATA_SYNC;
break;
- /* According to 22.030: Telephony & All Sync services */
+ /* According to 22.030: Telephony & All Sync services (1, 8) */
case 26:
cls = BEARER_CLASS_VOICE | BEARER_CLASS_DATA_SYNC;
break;