1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
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
|