Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 435460 | Differences between
and this patch

Collapse All | Expand All

(-)epan/dissectors/packet-gtpv2.c (-16 / +15 lines)
Lines 2233-2239 Link Here
2233
static void
2233
static void
2234
dissect_gtpv2_bearer_ctx(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree _U_, proto_item *item, guint16 length _U_, guint8 message_type _U_, guint8 instance _U_)
2234
dissect_gtpv2_bearer_ctx(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree _U_, proto_item *item, guint16 length _U_, guint8 message_type _U_, guint8 instance _U_)
2235
{
2235
{
2236
    int         offset = 0; 
2236
    int         offset = 0;
2237
    tvbuff_t   *new_tvb;
2237
    tvbuff_t   *new_tvb;
2238
    proto_tree *grouped_tree;
2238
    proto_tree *grouped_tree;
2239
2239
Lines 5884-5896 Link Here
5884
           FT_BYTES, BASE_NONE, NULL, 0x0,
5884
           FT_BYTES, BASE_NONE, NULL, 0x0,
5885
           NULL, HFILL}
5885
           NULL, HFILL}
5886
        },
5886
        },
5887
		/* Bit 1 – PVI (Pre-emption Vulnerability): See 3GPP TS 29.212[29], 
5887
        /* Bit 1 - PVI (Pre-emption Vulnerability): See 3GPP TS 29.212[29],
5888
		 * clause 5.3.47 Pre-emption-Vulnerability AVP.
5888
         * clause 5.3.47 Pre-emption-Vulnerability AVP.
5889
		 * 5.3.47 Pre-emption-Vulnerability AVP
5889
         * 5.3.47 Pre-emption-Vulnerability AVP
5890
		 * The following values are defined:
5890
         * The following values are defined:
5891
		 * PRE-EMPTION_VULNERABILITY_ENABLED (0)
5891
         * PRE-EMPTION_VULNERABILITY_ENABLED (0)
5892
		 * PRE-EMPTION_VULNERABILITY_DISABLED (1)
5892
         * PRE-EMPTION_VULNERABILITY_DISABLED (1)
5893
		 */
5893
         */
5894
        {&hf_gtpv2_bearer_qos_pvi,
5894
        {&hf_gtpv2_bearer_qos_pvi,
5895
         {"PVI (Pre-emption Vulnerability)", "gtpv2.bearer_qos_pvi",
5895
         {"PVI (Pre-emption Vulnerability)", "gtpv2.bearer_qos_pvi",
5896
          FT_BOOLEAN, 8, TFS(&tfs_disabled_enabled), 0x01,
5896
          FT_BOOLEAN, 8, TFS(&tfs_disabled_enabled), 0x01,
Lines 5901-5913 Link Here
5901
          FT_UINT8, BASE_DEC, NULL, 0x3c,
5901
          FT_UINT8, BASE_DEC, NULL, 0x3c,
5902
          NULL, HFILL}
5902
          NULL, HFILL}
5903
        },
5903
        },
5904
		/* Bit 7 – PCI (Pre-emption Capability): See 3GPP TS 29.212[29], clause 5.3.46 Pre-emption-Capability AVP. 
5904
        /* Bit 7 - PCI (Pre-emption Capability): See 3GPP TS 29.212[29], clause 5.3.46 Pre-emption-Capability AVP.
5905
		 * clause 5.3.46 Pre-emption-Capability AVP.
5905
         * clause 5.3.46 Pre-emption-Capability AVP.
5906
		 * 5.3.46 Pre-emption-Capability AVP
5906
         * 5.3.46 Pre-emption-Capability AVP
5907
		 * The following values are defined:
5907
         * The following values are defined:
5908
		 * PRE-EMPTION_CAPABILITY_ENABLED (0)
5908
         * PRE-EMPTION_CAPABILITY_ENABLED (0)
5909
		 * PRE-EMPTION_CAPABILITY_DISABLED (1)
5909
         * PRE-EMPTION_CAPABILITY_DISABLED (1)
5910
		 */
5910
         */
5911
        {&hf_gtpv2_bearer_qos_pci,
5911
        {&hf_gtpv2_bearer_qos_pci,
5912
         {"PCI (Pre-emption Capability)", "gtpv2.bearer_qos_pci",
5912
         {"PCI (Pre-emption Capability)", "gtpv2.bearer_qos_pci",
5913
          FT_BOOLEAN, 8, TFS(&tfs_disabled_enabled), 0x40,
5913
          FT_BOOLEAN, 8, TFS(&tfs_disabled_enabled), 0x40,
5914
-----------------------------------------------------------------------

Return to bug 435460