Made number of duplicate announcements configurable

This commit is contained in:
adamdunkels 2010-01-26 10:18:55 +00:00
parent dbdf9982a9
commit b728c0927c
1 changed files with 5 additions and 1 deletions

View File

@ -33,7 +33,7 @@
* *
* This file is part of the Contiki operating system. * This file is part of the Contiki operating system.
* *
* $Id: polite-announcement.c,v 1.9 2010/01/25 13:55:17 adamdunkels Exp $ * $Id: polite-announcement.c,v 1.10 2010/01/26 10:18:55 adamdunkels Exp $
*/ */
/** /**
@ -62,7 +62,11 @@ struct announcement_data {
uint16_t value; uint16_t value;
}; };
#ifdef POLITE_ANNOUNCEMENT_CONF_MAX_DUPS
#define NUM_DUPS POLITE_ANNOUNCEMENT_CONF_MAX_DUPS
#else /* POLITE_ANNOUNCEMENT_CONF_MAX_DUPS */
#define NUM_DUPS 5 #define NUM_DUPS 5
#endif /* POLITE_ANNOUNCEMENT_CONF_MAX_DUPS */
#define ANNOUNCEMENT_MSG_HEADERLEN 2 #define ANNOUNCEMENT_MSG_HEADERLEN 2
struct announcement_msg { struct announcement_msg {