~ubuntu-branches/ubuntu/gutsy/wireshark/gutsy-security

« back to all changes in this revision

Viewing changes to epan/dissectors/packet-sigcomp.c

  • Committer: Bazaar Package Importer
  • Author(s): Frederic Peters
  • Date: 2007-04-01 08:58:40 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070401085840-or3qhrpv8alt1bwg
Tags: 0.99.5-1
* New upstream release.
* debian/patches/09_idl2wrs.dpatch: updated to patch idl2wrs.sh.in.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * Routines for Signaling Compression (SigComp) dissection.
3
3
 * Copyright 2004-2005, Anders Broman <anders.broman@ericsson.com>
4
4
 *
5
 
 * $Id: packet-sigcomp.c 18196 2006-05-21 04:49:01Z sahlberg $
 
5
 * $Id: packet-sigcomp.c 20304 2007-01-04 13:25:25Z martinm $
6
6
 *
7
7
 * Wireshark - Network traffic analyzer
8
8
 * By Gerald Combs <gerald@wireshark.org>
717
717
                                i++;
718
718
                        }
719
719
 
 
720
/* begin partial state-id change cco@iptel.org */                               
 
721
#if 0
720
722
                        result_code = udvm_state_access(tvb, sigcomp_tree, buff, p_id_start, partial_state_len, state_begin, &state_length, 
721
723
                                &state_address, &state_instruction, hf_sigcomp_partial_state);
722
 
 
723
 
 
 
724
#endif
 
725
                        result_code = udvm_state_access(tvb, sigcomp_tree, buff, p_id_start, STATE_MIN_ACCESS_LEN, state_begin, &state_length, 
 
726
                                &state_address, &state_instruction, hf_sigcomp_partial_state);
 
727
 
 
728
/* end partial state-id change cco@iptel.org */                         
724
729
                        if ( result_code != 0 ){
725
730
                                proto_tree_add_text(sigcomp_tree, tvb, 0, -1,"Failed to Access state Wireshark UDVM diagnostic: %s.",
726
731
                                            val_to_str(result_code, result_code_vals,"Unknown (%u)"));
2555
2560
    static enum_val_t udvm_detail_vals[] = {
2556
2561
        {"no-printout", "No-Printout", 0},
2557
2562
        {"low-detail", "Low-detail", 1},
2558
 
        {"medium-detail", "medium-detail", 2},
 
2563
        {"medium-detail", "Medium-detail", 2},
2559
2564
        {"high-detail", "High-detail", 3},
2560
2565
        {NULL, NULL, -1}
2561
2566
    };