]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Declare u8, u16 and u32 types for linux packetfilter.
authorTed Lemon <source@isc.org>
Thu, 4 Feb 1999 22:11:30 +0000 (22:11 +0000)
committerTed Lemon <source@isc.org>
Thu, 4 Feb 1999 22:11:30 +0000 (22:11 +0000)
includes/cf/linux.h

index 11bf1e617a44f362109d13e8b039e489736ac6ec..13523b93d02d630752557a0b536d6453877f14ea 100644 (file)
@@ -5,7 +5,7 @@
    Based on a configuration originally supplied by Jonathan Stone. */
 
 /*
- * Copyright (c) 1996, 1998 The Internet Software Consortium.
+ * Copyright (c) 1996, 1998, 1999 The Internet Software Consortium.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -48,6 +48,10 @@ typedef unsigned short u_int16_t;
 typedef unsigned long u_int32_t;
 #endif /* __BIT_TYPES_DEFINED__ */
 
+typedef u_int8_t u8;
+typedef u_int16_t u16;
+typedef u_int32_t u32;
+
 #include <syslog.h>
 #include <sys/types.h>
 #include <string.h>