Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/external/mpl/dhcp/dist/keama/keama.h,v rcsdiff: /ftp/cvs/cvsroot/src/external/mpl/dhcp/dist/keama/keama.h,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- src/external/mpl/dhcp/dist/keama/keama.h 2020/08/03 21:10:57 1.2 +++ src/external/mpl/dhcp/dist/keama/keama.h 2022/04/03 01:10:59 1.3 @@ -1,7 +1,7 @@ -/* $NetBSD: keama.h,v 1.2 2020/08/03 21:10:57 christos Exp $ */ +/* $NetBSD: keama.h,v 1.3 2022/04/03 01:10:59 christos Exp $ */ /* - * Copyright (c) 2017-2019 by Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2017-2022 Internet Systems Consortium, Inc. ("ISC") * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -16,8 +16,8 @@ * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * * Internet Systems Consortium, Inc. - * 950 Charter Street - * Redwood City, CA 94063 + * PO Box 360 + * Newmarket, NH 03857 USA * * https://www.isc.org/ * @@ -33,11 +33,13 @@ #include /* Resolution of FQDNs into IPv4 addresses */ -enum resolve { +enum resolve { perform = 0, /* resolve */ fatal, /* raise a fatal error */ pass /* pass the string wth a warning */ -} resolve; +}; + +extern enum resolve resolve; /* From includes/dhcp.h */ @@ -60,8 +62,6 @@ extern int local_family; /* A parsing context. */ -TAILQ_HEAD(parses, parse) parses; - struct parse { int lexline; int lexchar; @@ -122,6 +122,8 @@ struct parse { }; +extern TAILQ_HEAD(parses, parse) parses; + #define PARAMETER 0 #define TOPLEVEL 1 #define ROOT_GROUP 2