up vote 2 down vote favorite
share [g+] share [fb]

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?

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

Just use inet_ntoa(3) as so:

(gdb) p (char*)inet_ntoa(0x01234567)  # Replace with your IP address
$1 = 0xa000b660 "103.69.35.1"
link|improve this answer
Is something similar possible for IPv6 addresses? – Prof. Moriarty Nov 9 '11 at 16:17
Yes, inet_ntop(3). – Adam Rosenfield Nov 10 '11 at 3:09
I suspected that, even tried it before asking, but what do I give as a third argument? I tried different things, but I get SIGSEGV all the time. – Prof. Moriarty Nov 10 '11 at 16:28
You need to pass it an address in the inferior process's address space. You could grab some unused global buffer somewhere, or you could just malloc it yourself, e.g. (gdb) p (void*)malloc(64); $1 = (void *) 0x12345678; (gdb) p (char*)inet_ntop(23,&my_ip6_addr,0x12345678,64). – Adam Rosenfield Nov 11 '11 at 18:51
feedback

Make a function that calls inet_ntoa, and then call it with the 'p' command in gdb on your int.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.