calin radoni's humble web presence |
home![]() ![]() ![]() |
Installing Honeyd 1.0 and Arpd 0.2 under Fedora Core 4 (with gcc 4.0.0)
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.