I'd like to know what the function does in line 1165 of this link. it is ssl_print_string(a, b) function in packe-ssl-utils.h file. I've seen it is been called in several places where it was given a string as a first argument and a variable as the second one. However, I'm not able to tell from the context what it does and not able to find its body (if it has one!). Thanks! asked 10 Nov '14, 09:57 flora |
One Answer:
That definition is simply a macro definition that compiles to nothing when answered 10 Nov '14, 11:02 grahamb ♦ |
Thanks for your quick response and useful explanation. It helps a lot and I found the definition for the external function. It is in the packet-ssl-utils.c. It just prints to the ssl debug file.
OK, somehow I missed that in the grep output.