Text   |  XML   |  ReML   |   Visible Warnings:

Unused Value  at packet-ppp.c:4992

No properties have been set. | edit properties
Jump to warning location ↓ warning details...
Show Events | Options

proto_reg_handoff_iphc_crtp

(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-ppp.c)expand/collapse
Show more  
 4979  proto_reg_handoff_iphc_crtp(void)
 4980  {
 4981    dissector_handle_t fh_handle;
 4982    dissector_handle_t cudp16_handle;
 4983    dissector_handle_t cudp8_handle;
 4984    dissector_handle_t cs_handle;
 4985   
 4986    fh_handle = create_dissector_handle(dissect_iphc_crtp_fh, proto_iphc_crtp);
 4987    dissector_add("ppp.protocol", PPP_RTP_FH, fh_handle);
 4988   
 4989    cudp16_handle = create_dissector_handle(dissect_iphc_crtp_cudp16, proto_iphc_crtp);
 4990    dissector_add("ppp.protocol", PPP_RTP_CUDP16, cudp16_handle);
 4991   
 4992    cudp8_handle = create_dissector_handle(dissect_iphc_crtp_cudp8, proto_iphc_crtp);
 4993    dissector_add("ppp.protocol", PPP_RTP_CUDP8, cudp16_handle);
 4994   
 4995    cs_handle = create_dissector_handle(dissect_iphc_crtp_cs, proto_iphc_crtp);
 4996    dissector_add("ppp.protocol", PPP_RTP_CS, cs_handle);
 4997   
 4998    /*
 4999     * See above comment about NDISWAN for an explanation of why we're
 5000     * registering with the "ethertype" dissector table.
 5001     */
 5002    dissector_add("ethertype", PPP_RTP_FH, fh_handle);
 5003    dissector_add("ethertype", PPP_RTP_CUDP16, cudp16_handle);
 5004    dissector_add("ethertype", PPP_RTP_CUDP8, cudp16_handle);
 5005    dissector_add("ethertype", PPP_RTP_CS, cs_handle);
 5006  }
Show more  




Change Warning 2890.30631 : Unused Value

Priority:
State:
Finding:
Owner:
Note: