ANNOUNCEMENT: Live Wireshark University & Allegro Packets online APAC Wireshark Training Session
July 17th, 2024 | 10:00am-11:55am SGT (UTC+8) | Online

Wireshark-bugs: [Wireshark-bugs] [Bug 9515] TLSV1 "Ignored Unknown Record"

Date: Mon, 02 Feb 2015 23:27:01 +0000

Comment # 23 on bug 9515 from
Okay, calling the application, then SSL, then application feels like a hack.

Digging in the TCP code, I found conversation_set_dissector which seems to do
what is wanted here. Do you foresee any issues when using this:

    if (starttls_acknowledgement_detected) {
      // next packet is SSL
      conversation_set_dissector(conversation, ssl_handle);
      // save current protocol, SSL will then use this for decoding appdata
      conversation_add_proto_data(conversation, ..., ...);
    }


You are receiving this mail because:
  • You are watching all bug changes.