MySQL: decoding response fails

MySQL Response packets within an SSL stream are not correctly decoded.

When not using SSL:
- Decoding works
- Multiple MySQL protocol entries per frame
- Info==Response

With SSL:
- Decoding partly works
- One MySQL protocol entry per fram
- Info==Response Tabular

From me:
call dissect_mysql (with tcp_dissect_pdus..) and not dissect_mysql_pdu !

Bug: 10339
Change-Id: I253f6683105ed23b49a72865fea005e31e2594d8
Reviewed-on: https://code.wireshark.org/review/3412
Reviewed-by: Evan Huus <eapache@gmail.com>
This commit is contained in:
Alexis La Goutte 2014-08-04 19:42:29 +02:00 committed by Evan Huus
parent c540e556d5
commit 4a2e968ff3
1 changed files with 1 additions and 1 deletions

View File

@ -3050,7 +3050,7 @@ void proto_register_mysql(void)
"Whether the MySQL dissector should display the SQL query string in the INFO column.",
&mysql_showquery);
new_register_dissector("mysql", dissect_mysql_pdu, proto_mysql);
new_register_dissector("mysql", dissect_mysql, proto_mysql);
}
/* dissector registration */