diff options
author | Anders Broman <anders.broman@ericsson.com> | 2011-04-06 06:24:19 +0000 |
---|---|---|
committer | Anders Broman <anders.broman@ericsson.com> | 2011-04-06 06:24:19 +0000 |
commit | c039f9f8a8bb04d2a8dcd6e2ec1facaee3f1f855 (patch) | |
tree | f0a7a95043a50da91e3c70353d7b81f1c7b6f314 | |
parent | 4e8c772d11bc28cb9f25005c7c355caae24b2c9a (diff) | |
download | wireshark-c039f9f8a8bb04d2a8dcd6e2ec1facaee3f1f855.tar.gz wireshark-c039f9f8a8bb04d2a8dcd6e2ec1facaee3f1f855.tar.bz2 wireshark-c039f9f8a8bb04d2a8dcd6e2ec1facaee3f1f855.zip |
Add a comment
svn path=/trunk/; revision=36490
-rw-r--r-- | asn1/camel/camel.cnf | 15 | ||||
-rw-r--r-- | epan/dissectors/packet-camel.c | 15 |
2 files changed, 30 insertions, 0 deletions
diff --git a/asn1/camel/camel.cnf b/asn1/camel/camel.cnf index 4f3d768665..0302832716 100644 --- a/asn1/camel/camel.cnf +++ b/asn1/camel/camel.cnf @@ -605,6 +605,21 @@ proto_tree *subtree; %(DEFAULT_BODY)s #.FN_BODY CalledPartyBCDNumber VAL_PTR = ¶meter_tvb +/* See 3GPP TS 29.078 + * and 3GPP TS 24.008, section 10.5.4.7 + * Indicates the Called Party Number, including service selection information. + * Refer to 3GPP TS 24.008 [9] for encoding. + * This data type carries only the 'type of number', 'numbering plan + * identification' and 'number digit' fields defined in 3GPP TS 24.008 [9]; + * it does not carry the 'called party BCD number IEI' or 'length of called + * party BCD number contents'. + * In the context of the DestinationSubscriberNumber field in ConnectSMSArg or + * InitialDPSMSArg, a CalledPartyBCDNumber may also contain an alphanumeric + * character string. In this case, type-of-number '101'B is used, in accordance + * with 3GPP TS 23.040 [6]. The address is coded in accordance with the + * GSM 7-bit default alphabet definition and the SMS packing rules + * as specified in 3GPP TS 23.038 [15] in this case. + */ tvbuff_t *parameter_tvb; proto_tree *subtree; diff --git a/epan/dissectors/packet-camel.c b/epan/dissectors/packet-camel.c index 3535eeac79..0f2a083030 100644 --- a/epan/dissectors/packet-camel.c +++ b/epan/dissectors/packet-camel.c @@ -1979,6 +1979,21 @@ dissect_camel_BearerCapability(gboolean implicit_tag _U_, tvbuff_t *tvb _U_, int static int dissect_camel_CalledPartyBCDNumber(gboolean implicit_tag _U_, tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) { +/* See 3GPP TS 29.078 + * and 3GPP TS 24.008, section 10.5.4.7 + * Indicates the Called Party Number, including service selection information. + * Refer to 3GPP TS 24.008 [9] for encoding. + * This data type carries only the 'type of number', 'numbering plan + * identification' and 'number digit' fields defined in 3GPP TS 24.008 [9]; + * it does not carry the 'called party BCD number IEI' or 'length of called + * party BCD number contents'. + * In the context of the DestinationSubscriberNumber field in ConnectSMSArg or + * InitialDPSMSArg, a CalledPartyBCDNumber may also contain an alphanumeric + * character string. In this case, type-of-number '101'B is used, in accordance + * with 3GPP TS 23.040 [6]. The address is coded in accordance with the + * GSM 7-bit default alphabet definition and the SMS packing rules + * as specified in 3GPP TS 23.038 [15] in this case. + */ tvbuff_t *parameter_tvb; proto_tree *subtree; |