diff options
author | Philip M. Gollucci <pgollucci@FreeBSD.org> | 2010-09-08 05:25:12 +0000 |
---|---|---|
committer | Philip M. Gollucci <pgollucci@FreeBSD.org> | 2010-09-08 05:25:12 +0000 |
commit | 1b79d7d08ad1578f66468b31791d944b4982ed66 (patch) | |
tree | a266e7666a9756dff08481ea4aab349e60c17264 /net/arpd | |
parent | af47aecb15392800553574bc90437714b3827fa7 (diff) | |
download | ports-1b79d7d08ad1578f66468b31791d944b4982ed66.tar.gz ports-1b79d7d08ad1578f66468b31791d944b4982ed66.zip |
Notes
Diffstat (limited to 'net/arpd')
-rw-r--r-- | net/arpd/Makefile | 28 | ||||
-rw-r--r-- | net/arpd/distinfo | 3 | ||||
-rw-r--r-- | net/arpd/files/patch-arpd.c | 42 | ||||
-rw-r--r-- | net/arpd/pkg-descr | 4 |
4 files changed, 0 insertions, 77 deletions
diff --git a/net/arpd/Makefile b/net/arpd/Makefile deleted file mode 100644 index 74917ceb9f1e..000000000000 --- a/net/arpd/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -# Ports collection makefile for: arpd -# Date created: 16/04/2002 -# Whom: Dominic Marks <dominic_marks@btinternet.com> -# -# $FreeBSD$ -# - -PORTNAME= arpd -PORTVERSION= 0.2 -PORTREVISION= 7 -CATEGORIES= net -MASTER_SITES= http://niels.xtdnet.nl/honeyd/ - -MAINTAINER= ports@FreeBSD.org -COMMENT= A daemon to service arp replies - -LIB_DEPENDS= event-1.4:${PORTSDIR}/devel/libevent \ - dnet.1:${PORTSDIR}/net/libdnet - -BROKEN= does not build - -GNU_CONFIGURE= yes -WRKSRC= ${WRKDIR}/${PORTNAME} - -MAN8= arpd.8 -PLIST_FILES= sbin/arpd - -.include <bsd.port.mk> diff --git a/net/arpd/distinfo b/net/arpd/distinfo deleted file mode 100644 index 47f7edb8a307..000000000000 --- a/net/arpd/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (arpd-0.2.tar.gz) = e2911fa9de1b92ef50deda1489ae944d -SHA256 (arpd-0.2.tar.gz) = 21d55de1506b3dbbfddb1b57e782a5fbf7140d299fbb08f4a8e48daaaa8489e7 -SIZE (arpd-0.2.tar.gz) = 49437 diff --git a/net/arpd/files/patch-arpd.c b/net/arpd/files/patch-arpd.c deleted file mode 100644 index 65feffe46220..000000000000 --- a/net/arpd/files/patch-arpd.c +++ /dev/null @@ -1,42 +0,0 @@ ---- arpd.c.orig Sun Feb 9 05:20:40 2003 -+++ arpd.c Wed Sep 1 13:38:11 2004 -@@ -265,7 +265,7 @@ - spa->addr_ip, tha->addr_eth, tpa->addr_ip); - - if (op == ARP_OP_REQUEST) { -- syslog(LOG_DEBUG, __FUNCTION__ ": who-has %s tell %s", -+ syslog(LOG_DEBUG, "%s: who-has %s tell %s", __FUNCTION__, - addr_ntoa(tpa), addr_ntoa(spa)); - } else if (op == ARP_OP_REPLY) { - syslog(LOG_INFO, "arp reply %s is-at %s", -@@ -282,7 +282,7 @@ - int error; - - if (addr_cmp(addr, &arpd_ifent.intf_addr) == 0) { -- syslog(LOG_DEBUG, __FUNCTION__ ": %s at %s", -+ syslog(LOG_DEBUG, "%s: %s at %s", __FUNCTION__, - addr_ntoa(addr), addr_ntoa(&arpd_ifent.intf_link_addr)); - return (0); - } -@@ -291,10 +291,10 @@ - error = arp_get(arpd_arp, &arpent); - - if (error == -1) { -- syslog(LOG_DEBUG, __FUNCTION__ ": no entry for %s", -+ syslog(LOG_DEBUG, "%s: no entry for %s", __FUNCTION__, - addr_ntoa(addr)); - } else { -- syslog(LOG_DEBUG, __FUNCTION__ ": %s at %s", -+ syslog(LOG_DEBUG, "%s: %s at %s", __FUNCTION__, - addr_ntoa(addr), addr_ntoa(&arpent.arp_ha)); - } - return (error); -@@ -423,7 +423,7 @@ - if ((req = SPLAY_FIND(tree, &arpd_reqs, &tmp)) != NULL) { - addr_pack(&src.arp_ha, ADDR_TYPE_ETH, ETH_ADDR_BITS, - ethip->ar_sha, ETH_ADDR_LEN); -- syslog(LOG_DEBUG, __FUNCTION__ ": %s at %s", -+ syslog(LOG_DEBUG, "%s: %s at %s", __FUNCTION__, - addr_ntoa(&req->pa), addr_ntoa(&src.arp_ha)); - - /* This address is claimed */ diff --git a/net/arpd/pkg-descr b/net/arpd/pkg-descr deleted file mode 100644 index fadf333bf806..000000000000 --- a/net/arpd/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Arpd can be used to direct all Arp queries for an interface into a -single IP address or network. - -WWW: http://www.citi.umich.edu/u/provos/ |