mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2025-03-12 22:14:25 +00:00
Add NETBIOSNS options to doxygen docs
This commit is contained in:
parent
93ad162aa6
commit
f7e12d835c
@ -34,13 +34,19 @@
|
||||
|
||||
#include "lwip/opt.h"
|
||||
|
||||
/**
|
||||
* @defgroup netbiosns_opts Options
|
||||
* @ingroup netbiosns
|
||||
* @{
|
||||
*/
|
||||
|
||||
/** Since there's no standard function for case-insensitive string comparision,
|
||||
* we need another define here:
|
||||
* define this to stricmp() for windows or strcasecmp() for linux.
|
||||
* If not defined, comparision is case sensitive and the provided hostname must be
|
||||
* uppercase.
|
||||
*/
|
||||
#ifndef NETBIOS_STRCMP
|
||||
#if !defined NETBIOS_STRCMP || defined __DOXYGEN__
|
||||
#define NETBIOS_STRCMP(str1, str2) strcmp(str1, str2)
|
||||
#endif
|
||||
|
||||
@ -52,7 +58,12 @@
|
||||
*
|
||||
* If this is not defined, netbiosns_set_name() can be called at runtime to change the name.
|
||||
*/
|
||||
/*#define NETBIOS_LWIP_NAME "NETBIOSLWIPDEV"*/
|
||||
#ifdef __DOXYGEN__
|
||||
#define NETBIOS_LWIP_NAME "NETBIOSLWIPDEV"
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
|
||||
#endif /* LWIP_HDR_APPS_NETBIOS_OPTS_H */
|
||||
|
Loading…
x
Reference in New Issue
Block a user