From: Ted Lemon Date: Thu, 4 Feb 1999 22:11:30 +0000 (+0000) Subject: Declare u8, u16 and u32 types for linux packetfilter. X-Git-Tag: V2-BETA-1-PATCH-10~9 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=828a8045d9a884e080246d7ea93d2a44febfb99e;p=thirdparty%2Fdhcp.git Declare u8, u16 and u32 types for linux packetfilter. --- diff --git a/includes/cf/linux.h b/includes/cf/linux.h index 11bf1e617..13523b93d 100644 --- a/includes/cf/linux.h +++ b/includes/cf/linux.h @@ -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 #include #include