Comment # 23
on bug 9515
from Peter Wu
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.