ISC 970605 snapshot

This commit is contained in:
mellon 1997-06-06 02:18:40 +00:00
parent f43910b5eb
commit 1a51a4cc68
3 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,10 @@
970605
- Add client-hostname token to lexer so that the parser can use it.
Fixes a serious lease database bug.
- Disable log message on receipt of short ICMP Echo replies.
970602 970602
- Added DHCP Client scripts for FreeBSD, Solaris, and Linux, but - Added DHCP Client scripts for FreeBSD, Solaris, and Linux, but

View File

@ -42,7 +42,7 @@
#ifndef lint #ifndef lint
static char copyright[] = static char copyright[] =
"$Id: conflex.c,v 1.1.1.2 1997/06/03 02:49:19 mellon Exp $ Copyright (c) 1995, 1996, 1997 The Internet Software Consortium. All rights reserved.\n"; "$Id: conflex.c,v 1.1.1.3 1997/06/06 02:18:53 mellon Exp $ Copyright (c) 1995, 1996, 1997 The Internet Software Consortium. All rights reserved.\n";
#endif /* not lint */ #endif /* not lint */
#include "dhcpd.h" #include "dhcpd.h"
@ -379,6 +379,8 @@ static int intern (atom, dfv)
return CIADDR; return CIADDR;
if (!strcasecmp (atom + 1, "lient-identifier")) if (!strcasecmp (atom + 1, "lient-identifier"))
return CLIENT_IDENTIFIER; return CLIENT_IDENTIFIER;
if (!strcasecmp (atom + 1, "lient-hostname"))
return CLIENT_HOSTNAME;
break; break;
case 'd': case 'd':
if (!strcasecmp (atom + 1, "omain")) if (!strcasecmp (atom + 1, "omain"))

View File

@ -42,7 +42,7 @@
#ifndef lint #ifndef lint
static char ocopyright[] = static char ocopyright[] =
"$Id: dhcpd.c,v 1.1.1.2 1997/06/03 02:49:57 mellon Exp $ Copyright 1995, 1996 The Internet Software Consortium."; "$Id: dhcpd.c,v 1.1.1.3 1997/06/06 02:19:13 mellon Exp $ Copyright 1995, 1996 The Internet Software Consortium.";
#endif #endif
static char copyright[] = static char copyright[] =