ongrep

A cleaned up fork of ngrep for OpenBSD
git clone git://git.sgregoratto.me/ongrep
Log | Files | Refs | README | LICENSE

commit 4c7eee2e3e1eee5d362b3e84238885de88269b29
parent b24d1e7e0999112d5ac074dee118b8223453dcaa
Author: Jordan Ritter <jpr5@darkridge.com>
Date:   Wed,  4 May 2005 19:05:43 +0000

updated with signed types as well, since although win32 will compile it, the browser/debugger *insisted* it had never been defined (liars!!)

Diffstat:
Mwin32/support/types.h | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/win32/support/types.h b/win32/support/types.h @@ -18,6 +18,11 @@ typedef unsigned char uint8_t; typedef unsigned short int uint16_t; typedef unsigned int uint32_t; +typedef signed char int8_t; +typedef signed short int int16_t; +typedef signed int int32_t; + + #define IP_RF 0x8000 /* reserved fragment flag */ #define IP_DF 0x4000 /* dont fragment flag */