svn commit: samba r13810 - in branches/SAMBA_4_0/source/include: .

metze at samba.org metze at samba.org
Fri Mar 3 08:17:55 GMT 2006


Author: metze
Date: 2006-03-03 08:17:55 +0000 (Fri, 03 Mar 2006)
New Revision: 13810

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=13810

Log:
global data types are defined in core.h now...

metze
Modified:
   branches/SAMBA_4_0/source/include/core.h
   branches/SAMBA_4_0/source/include/includes.h


Changeset:
Modified: branches/SAMBA_4_0/source/include/core.h
===================================================================
--- branches/SAMBA_4_0/source/include/core.h	2006-03-03 08:15:29 UTC (rev 13809)
+++ branches/SAMBA_4_0/source/include/core.h	2006-03-03 08:17:55 UTC (rev 13810)
@@ -48,6 +48,14 @@
 /* 64 bit time (100 nanosec) 1601 - cifs6.txt, section 3.5, page 30, 4 byte aligned */
 typedef uint64_t NTTIME;
 
+/*
+  we use struct ipv4_addr to avoid having to include all the
+  system networking headers everywhere
+*/
+struct ipv4_addr {
+	uint32_t addr;
+};
+
 typedef NTSTATUS (*init_module_fn) (void);
 
 #endif /* _SAMBA_CORE_H */

Modified: branches/SAMBA_4_0/source/include/includes.h
===================================================================
--- branches/SAMBA_4_0/source/include/includes.h	2006-03-03 08:15:29 UTC (rev 13809)
+++ branches/SAMBA_4_0/source/include/includes.h	2006-03-03 08:17:55 UTC (rev 13810)
@@ -75,14 +75,6 @@
 #include <varargs.h>
 #endif
 
-/*
-  we use struct ipv4_addr to avoid having to include all the
-  system networking headers everywhere
-*/
-struct ipv4_addr {
-	uint32_t addr;
-};
-
 /* protocol types. It assumes that higher protocols include lower protocols
    as subsets. FIXME: Move to one of the smb-specific headers */
 enum protocol_types {PROTOCOL_NONE,PROTOCOL_CORE,PROTOCOL_COREPLUS,PROTOCOL_LANMAN1,PROTOCOL_LANMAN2,PROTOCOL_NT1};



More information about the samba-cvs mailing list