iana portlist updated and doxygen comments.

git-svn-id: file:///svn/unbound/trunk@1503 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards 2009-03-02 08:32:27 +00:00
parent 1811270c68
commit a9754e0727
3 changed files with 8 additions and 1 deletions

View file

@ -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

View file

@ -3880,6 +3880,7 @@
4567,
4568,
4569,
4591,
4592,
4593,
4594,
@ -5008,6 +5009,7 @@
18241,
18262,
18463,
18634,
18769,
18881,
18888,

View file

@ -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)