From 5208248f2567504fc24ebc5bce80124dba91d4ad Mon Sep 17 00:00:00 2001 From: Daniel Adolfsson Date: Fri, 7 Oct 2011 10:44:13 +0200 Subject: [PATCH] Release 0.2.1 --- Makefile | 8 +++++++- README | 9 ++++++--- src/ndppd.h | 2 +- 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 247f3df..b5c7cdb 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,9 @@ +ifdef DEBUG +MFLAGS = DEBUG=${DEBUG} +else +MFLAGS = +endif + MANDIR = ${DESTDIR}/usr/share/man SBINDIR = ${DESTDIR}/usr/sbin @@ -11,7 +17,7 @@ install: all cp ndppd.conf.5.gz ${MANDIR}/man5 ndppd: - cd src && make all && cp ndppd .. + cd src && make ${MFLAGS} all && cp ndppd .. clean: rm -f ndppd ndppd.conf.5.gz ndppd.1.gz diff --git a/README b/README index e642039..f8e2f79 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ ndppd - NDP Proxy Daemon - Version 0.2-beta + Version 0.2.1 ------------------------------------------------------------------------ 1. Legal @@ -26,8 +26,8 @@ 2. About 'ndppd' ------------------------------------------------------------------------ - ndppd, or 'NDP Proxy Daemon', is a daemon (!!) that proxies NDP - (Neighbor Discovery Protocol) messages between interfaces. + 'ndppd', or NDP Proxy Daemon, is a daemon that proxies NDP (Neighbor + Discovery Protocol) messages between interfaces. The Neighbor Discovery Protocol (NDP) is a protocol in the Internet Protocol Suite used with Internet Protocol Version 6 (IPv6). It @@ -39,6 +39,9 @@ discovery, and maintaining reachability information about the paths to other active neighbor nodes (RFC 4861). (Wikipedia) + 'ndppd' currently only supports Neighbor Solicitation Messages and + Neighbor Advertisement Messages. + Before an IPv6 packet can be sent to a host, that host's link-layer address must first be discovered. This is done by sending a Neighbor Solicitation message containing the requested target IPv6 address diff --git a/src/ndppd.h b/src/ndppd.h index b0ff071..61151c9 100644 --- a/src/ndppd.h +++ b/src/ndppd.h @@ -21,7 +21,7 @@ #define __NDPPD_NS_BEGIN namespace ndppd { #define __NDPPD_NS_END } -#define NDPPD_VERSION "0.2.1~rc1" +#define NDPPD_VERSION "0.2.1" #include