2003-05-09	Enrico Zini	<enrico@debian.org>
	* guessnet.c
	Implement evil ifupdown detection
	* guessnet.1
	Path is /usr/sbin, not /usr/bin
	(thanks to Herv Eychenne)
	
	Got tired of writing changelogs when I'm the only one that maintains
	the code.  I'd be happy of having guessnet in a CVS somewhere, with
	other people contributing to it, and it would be essential for
	implementing wireless scans, since I don't have access to a wireless
	network or wireless hardware.

2003-05-08
	* guessnet.c
	Corrected commandline parsing code (now the presence of commandline
	switches does not force taking the interface name from commandline)

2003-05-17	Enrico Zini	<enrico@debian.org>
	* Extensive code reorganization and rewrite

2003-02-09	Enrico Zini	<enrico@debian.org>
	* guessnet.c
	Print the ethernet device if using -v
	Print a good error message in case libnet intialization fails

2003-02-07	Enrico Zini	<enrico@debian.org>
	* guessnet.c
	Finished porting to libnet1

2003-02-05	Enrico Zini	<enrico@debian.org>
	* Makefile.am
	Install guessnet under /usr/sbin (thanks to Thomas Hood)
	* guessnet.1
	Uses new description by Thomas Hood, slightly edited by me
	* AUTHORS
	Added mention to Thomas Hood
	* guessnet.c
	Started porting to libnet1

2002-03-24	Enrico Zini	<enrico@debian.org>
	* guessnet.c
	Insulated possible endianness issues and enclosed them in functions
	and macros
	* configure.ac
	Added check for libpopt, since libnet-config does not add -lpopt to
	LIBS anymore
	* guessnet.1
	Filled the SECTION template with the section number at the start of
	the file (ops!)

2002-03-16	Enrico Zini	<enrico@debian.org>
	* guessnet.c
	target = *((int *)arp_header->ar_tpa);
		becomes
	target = *((int *)&arp_header->ar_tpa);
	Thanks to Lucien Saviot for pointing me of the typo.  Next issue to
	solve is how could it possibly work before :)
	* AUTHORS
	Added thanks to Lucien Saviot

2001-12-06	Enrico Zini	<enrico@debian.org>
	* guessnet.c
	Added #include <net/ethernet.h> to make it compile on S390
	(thanks to Gerhard Tonn <GerhardTonn@swol.de>)
	* examples/
	Added README, laptop-netconf and getmac
	* README
	Updated to mention getmac

2001-11-30	Enrico Zini	<enrico@debian.org>
	* guessnet.1, README
	Added suggestions and examples on how to retrieve the MACaddress of a
	remote interface with arping or arp -a

2001-11-23	Enrico Zini	<enrico@debian.org>
	* guessnet.c
	Added sleep after interface initialization and --init-time option
	Cleaned comment style, getting rid of C++ style comments
	Use memcpy instead of strncpy to compare MACaddresses
	  (oh, shame! shame! shame on me!)
	Added debugging output and --more-verbose (-V) option
	Code cleanups
	
	* guessnet.1
	Documented new option --init-time
	Documented new option --more-verbose (-V)

	* README
	Updated invocation summary
