I am debugging a networking code and want to print ip addresses which are declared as int32.
when i print it using gdb print command, i get some values which is not much meaningful.
How can i possibly print them in meaningful format?
|
I am debugging a networking code and want to print ip addresses which are declared as How can i possibly print them in meaningful format?
| ||||
|
feedback
|
|
Just use
| |||||||||
feedback
|
|
Make a function that calls inet_ntoa, and then call it with the 'p' command in gdb on your int. | |||
|
feedback
|