mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
iana portlist updated and doxygen comments.
git-svn-id: file:///svn/unbound/trunk@1503 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
1811270c68
commit
a9754e0727
3 changed files with 8 additions and 1 deletions
|
|
@ -2,6 +2,7 @@
|
||||||
- fixup --export-symbols to be -export-symbls for libtool.
|
- fixup --export-symbols to be -export-symbls for libtool.
|
||||||
This should fix extraneous symbols exported from libunbound.
|
This should fix extraneous symbols exported from libunbound.
|
||||||
Thanks to Ondrej Sury and Robert Edmonds for finding it.
|
Thanks to Ondrej Sury and Robert Edmonds for finding it.
|
||||||
|
- iana portlist updated.
|
||||||
|
|
||||||
27 February 2009: Wouter
|
27 February 2009: Wouter
|
||||||
- Fixup lexer, to not give warnings about fwrite. Appeared in
|
- Fixup lexer, to not give warnings about fwrite. Appeared in
|
||||||
|
|
|
||||||
|
|
@ -3880,6 +3880,7 @@
|
||||||
4567,
|
4567,
|
||||||
4568,
|
4568,
|
||||||
4569,
|
4569,
|
||||||
|
4591,
|
||||||
4592,
|
4592,
|
||||||
4593,
|
4593,
|
||||||
4594,
|
4594,
|
||||||
|
|
@ -5008,6 +5009,7 @@
|
||||||
18241,
|
18241,
|
||||||
18262,
|
18262,
|
||||||
18463,
|
18463,
|
||||||
|
18634,
|
||||||
18769,
|
18769,
|
||||||
18881,
|
18881,
|
||||||
18888,
|
18888,
|
||||||
|
|
|
||||||
|
|
@ -51,10 +51,13 @@
|
||||||
/** service name for unbound (internal to ServiceManager) */
|
/** service name for unbound (internal to ServiceManager) */
|
||||||
#define SERVICE_NAME "unbound"
|
#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)
|
#define MSG_GENERIC_SUCCESS ((WORD)0x00010001L)
|
||||||
|
/** from gen_msg.h - informational message record for windows message log */
|
||||||
#define MSG_GENERIC_INFO ((WORD)0x40010002L)
|
#define MSG_GENERIC_INFO ((WORD)0x40010002L)
|
||||||
|
/** from gen_msg.h - warning message record for windows message log */
|
||||||
#define MSG_GENERIC_WARN ((WORD)0x80010003L)
|
#define MSG_GENERIC_WARN ((WORD)0x80010003L)
|
||||||
|
/** from gen_msg.h - error message record for windows message log */
|
||||||
#define MSG_GENERIC_ERR ((WORD)0xC0010004L)
|
#define MSG_GENERIC_ERR ((WORD)0xC0010004L)
|
||||||
|
|
||||||
/** global service status */
|
/** global service status */
|
||||||
|
|
@ -73,6 +76,7 @@ fatal_win(const char* str)
|
||||||
|
|
||||||
/** put quotes around string. Needs one space in front
|
/** put quotes around string. Needs one space in front
|
||||||
* @param str: to be quoted.
|
* @param str: to be quoted.
|
||||||
|
* @param maxlen: max length of the string buffer.
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
quote_it(char* str, size_t maxlen)
|
quote_it(char* str, size_t maxlen)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue