calin radoni's humble web presence

homedocstoolboxabout

Installing Honeyd 1.0 and Arpd 0.2 under Fedora Core 4 (with gcc 4.0.0)

Technical detail 1

The honeyd-1.0 will not compile with gcc 4.0.0 because of this line (appears twice in the dhcpclient.c file):

eth = (struct eth_hdr *)p = buf;
						
I have change that line like this:
p = &buf[0];
eth = (struct eth_hdr *)p;
						

Go back to the article.


Copyright © 2005 - 2009 Calin Radoni Hosted on http://www.oocities.org/calinradoni Last page modification is 12 July 2005