summaryrefslogtreecommitdiffstats
path: root/tinySMS/include/tinysms/tsms_address.h
diff options
context:
space:
mode:
Diffstat (limited to 'tinySMS/include/tinysms/tsms_address.h')
-rwxr-xr-xtinySMS/include/tinysms/tsms_address.h100
1 files changed, 48 insertions, 52 deletions
diff --git a/tinySMS/include/tinysms/tsms_address.h b/tinySMS/include/tinysms/tsms_address.h
index f71589f..0a74483 100755
--- a/tinySMS/include/tinysms/tsms_address.h
+++ b/tinySMS/include/tinysms/tsms_address.h
@@ -2,19 +2,19 @@
* Copyright (C) 2009 Mamadou Diop.
*
* Contact: Mamadou Diop <diopmamadou(at)doubango.org>
-*
+*
* This file is part of Open Source Doubango Framework.
*
* DOUBANGO is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
-*
+*
* DOUBANGO is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
-*
+*
* You should have received a copy of the GNU General Public License
* along with DOUBANGO.
*
@@ -40,74 +40,70 @@ typedef uint8_t tsms_address_string_t[13]; /* 12 + (+) */
/** Address type
*/
-typedef enum tsms_address_type_e
-{
- tsms_addr_oa,
- tsms_addr_da,
- tsms_addr_smsc,
+typedef enum tsms_address_type_e {
+ tsms_addr_oa,
+ tsms_addr_da,
+ tsms_addr_smsc,
}
tsms_address_type_t;
/** Type-of-number
* 3GPP TS 23.040 v910 section 9.1.2.5.
*/
-typedef enum tsms_address_ton_e
-{
- /** "Unknown" is used when the user or network has no a priori information about the numbering plan. In
- this case, the Address-Value field is organized according to the network dialling plan, e.g. prefix or
- escape digits might be present.*/
- tsms_addr_ton_unknown = 0x00, // 0b000
- /** International number
- The international format shall be accepted also when the message is destined to a recipient in the
- same country as the MSC. */
- tsms_addr_ton_international = 0x01, // 0b001
- /** National number
- Prefix or escape digits shall not be included */
- tsms_addr_ton_national = 0x02, // 0b010
- /** "Network specific number" is used to indicate administration/service number specific to the serving
- network, e.g. used to access an operator. */
- tsms_addr_ton_network_specific = 0x03, // 0b011
- /** "Subscriber number" is used when a specific short number representation is stored in one or more
- SCs as part of a higher layer application. (Note that "Subscriber number" shall only be used in
- connection with the proper PID referring to this application). */
- tsms_addr_ton_subscriber = 0x04, // 0b100
- /** Alphanumeric, (coded according to GSM TS 03.38 7-bit default alphabet) */
- tsms_addr_ton_alphanumeric = 0x05, // 0b101
- /** Abbreviated number */
- tsms_addr_ton_abbreviated = 0x06, // 0b110
- /** Reserved for extension */
- tsms_addr_ton_reserved = 0x07, // 0b111
+typedef enum tsms_address_ton_e {
+ /** "Unknown" is used when the user or network has no a priori information about the numbering plan. In
+ this case, the Address-Value field is organized according to the network dialling plan, e.g. prefix or
+ escape digits might be present.*/
+ tsms_addr_ton_unknown = 0x00, // 0b000
+ /** International number
+ The international format shall be accepted also when the message is destined to a recipient in the
+ same country as the MSC. */
+ tsms_addr_ton_international = 0x01, // 0b001
+ /** National number
+ Prefix or escape digits shall not be included */
+ tsms_addr_ton_national = 0x02, // 0b010
+ /** "Network specific number" is used to indicate administration/service number specific to the serving
+ network, e.g. used to access an operator. */
+ tsms_addr_ton_network_specific = 0x03, // 0b011
+ /** "Subscriber number" is used when a specific short number representation is stored in one or more
+ SCs as part of a higher layer application. (Note that "Subscriber number" shall only be used in
+ connection with the proper PID referring to this application). */
+ tsms_addr_ton_subscriber = 0x04, // 0b100
+ /** Alphanumeric, (coded according to GSM TS 03.38 7-bit default alphabet) */
+ tsms_addr_ton_alphanumeric = 0x05, // 0b101
+ /** Abbreviated number */
+ tsms_addr_ton_abbreviated = 0x06, // 0b110
+ /** Reserved for extension */
+ tsms_addr_ton_reserved = 0x07, // 0b111
}
tsms_address_ton_t;
/** Numbering-Plan-Identification
* 3GPP TS 23.040 v910 section 9.1.2.5.
*/
-typedef enum tsms_address_npi_e
-{
- /* 0000 */ tsms_addr_npi_unknown = 0x00, /**< Unknown */
- /* 0001 */ tsms_addr_npi_isdn = 0x01, /**< ISDN/telephone numbering plan (E.164/E.163) */
- /* 0011 */ tsms_addr_npi_x121 = 0x03, /**< Data numbering plan (X.121) */
- /* 0100 */ tsms_addr_npi_telex = 0x04, /**< Telex numbering plan */
- /* 1000 */ tsms_addr_npi_national = 0x08, /**< National numbering plan */
- /* 1001 */ tsms_addr_npi_private = 0x09, /**< Private numbering plan */
- /* 1010 */ tsms_addr_npi_ermes = 0x0A, /**< ERMES numbering plan (ETSI DE/PS 3 01-3) */
- /* 1111 */ tsms_addr_npi_reserved = 0x0F, /**< Reserved for extension */
+typedef enum tsms_address_npi_e {
+ /* 0000 */ tsms_addr_npi_unknown = 0x00, /**< Unknown */
+ /* 0001 */ tsms_addr_npi_isdn = 0x01, /**< ISDN/telephone numbering plan (E.164/E.163) */
+ /* 0011 */ tsms_addr_npi_x121 = 0x03, /**< Data numbering plan (X.121) */
+ /* 0100 */ tsms_addr_npi_telex = 0x04, /**< Telex numbering plan */
+ /* 1000 */ tsms_addr_npi_national = 0x08, /**< National numbering plan */
+ /* 1001 */ tsms_addr_npi_private = 0x09, /**< Private numbering plan */
+ /* 1010 */ tsms_addr_npi_ermes = 0x0A, /**< ERMES numbering plan (ETSI DE/PS 3 01-3) */
+ /* 1111 */ tsms_addr_npi_reserved = 0x0F, /**< Reserved for extension */
}
tsms_address_npi_t;
/** Address
*/
-typedef struct tsms_address_s
-{
- TSK_DECLARE_OBJECT;
+typedef struct tsms_address_s {
+ TSK_DECLARE_OBJECT;
- // Address Type
- tsms_address_ton_t ton; /**< Type-of-number */
- tsms_address_npi_t npi; /**< Numbering-Plan-Identification */
+ // Address Type
+ tsms_address_ton_t ton; /**< Type-of-number */
+ tsms_address_npi_t npi; /**< Numbering-Plan-Identification */
- tsms_address_type_t type;
- char* digits; /* BCD digits */
+ tsms_address_type_t type;
+ char* digits; /* BCD digits */
}
tsms_address_t;
OpenPOWER on IntegriCloud