From ca3f70256ac0430e2db846d0293a7750a6d3ef6b Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 31 Jan 2005 17:16:45 +0000 Subject: 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) --- source4/include/includes.h | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'source4/include') diff --git a/source4/include/includes.h b/source4/include/includes.h index ce24525158..a185669abd 100644 --- a/source4/include/includes.h +++ b/source4/include/includes.h @@ -91,14 +91,6 @@ typedef int BOOL; -/* - we use struct ipv4_addr to avoid having to include all the - system networking headers everywhere -*/ -struct ipv4_addr { - uint32_t addr; -}; - #ifndef HAVE_STRERROR extern char *sys_errlist[]; #define strerror(i) sys_errlist[i] @@ -126,7 +118,6 @@ extern int errno; #include "pstring.h" #include "smb_macros.h" #include "smb.h" -#include "ads.h" #include "lib/socket/socket.h" #include "libcli/ldap/ldap.h" #include "byteorder.h" @@ -142,6 +133,7 @@ extern int errno; #include "ntvfs/ntvfs.h" #include "cli_context.h" #include "nsswitch/winbind_client.h" +#include "ads.h" #define malloc_p(type) (type *)malloc(sizeof(type)) #define malloc_array_p(type, count) (type *)realloc_array(NULL, sizeof(type), count) -- cgit