I've apiece of an external dissector code where several calls have been made to the function ssl_print_data. I'm not able to find out where the arguments passed to this function are printed out! I found it defined in the file packet-ssl-utils.c as the following:
I also found ssl_debug_file is defined in the same file as the following
It is not printing into console as I was not able to find any messages related to this specific function there. Should I create the ssl_debug_file somewhere ? If it is already exist where is it? Thanks. asked 01 Aug ‘14, 14:04 flora edited 01 Aug ‘14, 14:30 |
One Answer:
You can define the SSL debug file here
Please choose any existing file with the File dialog widget (Browse... button), or simply enter the file name. If you want the messages to go to STDERR, please enter - (minus) as the file name. Regards answered 03 Aug '14, 05:59 Kurt Knochner ♦ |
Thanks! This solves my problem.