diff options
author | Stefan Metzmacher <metze@samba.org> | 2005-01-31 17:16:45 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:09:27 -0500 |
commit | ca3f70256ac0430e2db846d0293a7750a6d3ef6b (patch) | |
tree | e5b29b99c6164bb2a077b8b608c9b4966bcbb55d /source4/librpc/ndr/ndr_misc.c | |
parent | 3b6fb593144290d5bf97d601ae99708880ff781f (diff) | |
download | samba-ca3f70256ac0430e2db846d0293a7750a6d3ef6b.tar.gz samba-ca3f70256ac0430e2db846d0293a7750a6d3ef6b.tar.bz2 samba-ca3f70256ac0430e2db846d0293a7750a6d3ef6b.zip |
r5145: define struct ipv4_addr in misc.idl,
so we can use it in nbt.idl and
get a nicer debug output
metze
(This used to be commit abacbc9192646f6f3c720758ab65889b82b9ae7b)
Diffstat (limited to 'source4/librpc/ndr/ndr_misc.c')
-rw-r--r-- | source4/librpc/ndr/ndr_misc.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/source4/librpc/ndr/ndr_misc.c b/source4/librpc/ndr/ndr_misc.c index a538dd3033..b9edc0ae9c 100644 --- a/source4/librpc/ndr/ndr_misc.c +++ b/source4/librpc/ndr/ndr_misc.c @@ -24,6 +24,16 @@ */ #include "includes.h" +#include "system/network.h" + +void ndr_print_ipv4_addr(struct ndr_print *ndr, const char *name, const struct ipv4_addr *_ip) +{ + struct ipv4_addr ip; + + ip.addr = htonl(_ip->addr); + + ndr->print(ndr, "%-25s: %s", name, sys_inet_ntoa(ip)); +} /* build a GUID from a string |