From a9754e0727960047625c7cb932693e8fc85f1c4d Mon Sep 17 00:00:00 2001 From: Wouter Wijngaards Date: Mon, 2 Mar 2009 08:32:27 +0000 Subject: [PATCH] iana portlist updated and doxygen comments. git-svn-id: file:///svn/unbound/trunk@1503 be551aaa-1e26-0410-a405-d3ace91eadb9 --- doc/Changelog | 1 + util/iana_ports.inc | 2 ++ winrc/win_svc.c | 6 +++++- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/doc/Changelog b/doc/Changelog index 48a937c83..c45634f3e 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -2,6 +2,7 @@ - fixup --export-symbols to be -export-symbls for libtool. This should fix extraneous symbols exported from libunbound. Thanks to Ondrej Sury and Robert Edmonds for finding it. + - iana portlist updated. 27 February 2009: Wouter - Fixup lexer, to not give warnings about fwrite. Appeared in diff --git a/util/iana_ports.inc b/util/iana_ports.inc index a796277de..fb228f09a 100644 --- a/util/iana_ports.inc +++ b/util/iana_ports.inc @@ -3880,6 +3880,7 @@ 4567, 4568, 4569, +4591, 4592, 4593, 4594, @@ -5008,6 +5009,7 @@ 18241, 18262, 18463, +18634, 18769, 18881, 18888, diff --git a/winrc/win_svc.c b/winrc/win_svc.c index 51beed831..755e2aef6 100644 --- a/winrc/win_svc.c +++ b/winrc/win_svc.c @@ -51,10 +51,13 @@ /** service name for unbound (internal to ServiceManager) */ #define SERVICE_NAME "unbound" -/** from gen_msg.h */ +/** from gen_msg.h - success message record for windows message log */ #define MSG_GENERIC_SUCCESS ((WORD)0x00010001L) +/** from gen_msg.h - informational message record for windows message log */ #define MSG_GENERIC_INFO ((WORD)0x40010002L) +/** from gen_msg.h - warning message record for windows message log */ #define MSG_GENERIC_WARN ((WORD)0x80010003L) +/** from gen_msg.h - error message record for windows message log */ #define MSG_GENERIC_ERR ((WORD)0xC0010004L) /** global service status */ @@ -73,6 +76,7 @@ fatal_win(const char* str) /** put quotes around string. Needs one space in front * @param str: to be quoted. + * @param maxlen: max length of the string buffer. */ static void quote_it(char* str, size_t maxlen)