Title | Convert a numeric address into a AF_INET text string suitable for presentation |
CommandLine | ./tst_inet_ntop_inet --log=8.html --title=Convert a numeric address into a AF_INET text string suitable for presentation |
TestVersion | REL_1_1_18 |
Start | 2023/02/03 01:00:37 |
SystemName | (null) |
KernelVersion | (null) |
01:00:37 | Start |
== convert loopback address into a AF_INET text string == | |
01:00:37 | dstaddr: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff |
01:00:37 | inet_ntop(af:AF_INET, src:127.0.0.1, dst:0x3ffd6ef84fc, size:20) |
01:00:37 | return 127.0.0.1 |
01:00:37 | dstaddr: 31 32 37 2e 30 2e 30 2e 31 00 ff ff ff ff ff ff ff ff ff ff |
== convert unspecified address into a AF_INET text string == | |
01:00:37 | dstaddr: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff |
01:00:37 | inet_ntop(af:AF_INET, src:0.0.0.0, dst:0x3ffd6ef84fc, size:8) |
01:00:37 | return 0.0.0.0 |
01:00:37 | dstaddr: 30 2e 30 2e 30 2e 30 00 ff ff ff ff ff ff ff ff ff ff ff ff |
== convert unspecified address with not enough memory == | |
01:00:37 | dstaddr: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff |
01:00:37 | inet_ntop(af:AF_INET, src:0.0.0.0, dst:0x3ffd6ef84fc, size:7) |
01:00:37 | return (null) |
01:00:37 | dstaddr: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff |
OK | |
01:00:38 | End |