diff options
author | Martin Pelikan <pelikan@cvs.openbsd.org> | 2014-05-05 18:27:58 +0000 |
---|---|---|
committer | Martin Pelikan <pelikan@cvs.openbsd.org> | 2014-05-05 18:27:58 +0000 |
commit | cf960822af1a7d706b772f6f1b4c3fe03e7460cf (patch) | |
tree | 1ebd519fc2bbb34c51efb86cf0fff1023f989c32 /usr.sbin/dhcpd/dhcpd.h | |
parent | 28ae172f52c858524cce8b50a6983bf05f6070b7 (diff) |
Don't call the ICMP handler indirectly + clean up a bit.
ok krw
Diffstat (limited to 'usr.sbin/dhcpd/dhcpd.h')
-rw-r--r-- | usr.sbin/dhcpd/dhcpd.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/dhcpd/dhcpd.h b/usr.sbin/dhcpd/dhcpd.h index 9c13aa803d8..be619607683 100644 --- a/usr.sbin/dhcpd/dhcpd.h +++ b/usr.sbin/dhcpd/dhcpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dhcpd.h,v 1.47 2013/04/17 19:26:10 krw Exp $ */ +/* $OpenBSD: dhcpd.h,v 1.48 2014/05/05 18:27:57 pelikan Exp $ */ /* * Copyright (c) 1995, 1996, 1997, 1998, 1999 @@ -687,9 +687,9 @@ u_int32_t checksum(unsigned char *, unsigned, u_int32_t); u_int32_t wrapsum(u_int32_t); /* icmp.c */ -void icmp_startup(int, void (*)(struct iaddr, u_int8_t *, int)); -int icmp_echorequest(struct iaddr *); -void icmp_echoreply(struct protocol *); +void icmp_startup(void); +int icmp_echorequest(struct iaddr *); +void icmp_echoreply(struct protocol *); /* pfutils.c */ __dead void pftable_handler(void); |