-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Bouffalolab] Fix BL602 IPv6 address generation failure (#23821)
* Update sdk repo for local link address duplicate * Fix restyle
- Loading branch information
Showing
3 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#ifndef _LWIP_DEFAULT_HOOKS_H_ | ||
#define _LWIP_DEFAULT_HOOKS_H_ | ||
#include "lwip/arch.h" | ||
#include "lwip/err.h" | ||
#include "lwip/ip_addr.h" | ||
|
||
#ifdef CONFIG_LWIP_HOOK_IP6_ROUTE_DEFAULT | ||
extern struct netif * lwip_hook_ip6_route(const ip6_addr_t * src, const ip6_addr_t * dest); | ||
#define LWIP_HOOK_IP6_ROUTE lwip_hook_ip6_route | ||
#endif | ||
|
||
#ifdef CONFIG_LWIP_HOOK_ND6_GET_GW_DEFAULT | ||
extern const ip6_addr_t * lwip_hook_nd6_get_gw(struct netif * netif, const ip6_addr_t * dest); | ||
#define LWIP_HOOK_ND6_GET_GW lwip_hook_nd6_get_gw | ||
#endif | ||
|
||
#endif /* _LWIP_DEFAULT_HOOKS_H_ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule repo
updated
7 files
+4 −0 | .gitmodules | |
+11 −0 | clean | |
+1 −1 | components | |
+1 −1 | customer_app | |
+1 −1 | docs | |
+1 −1 | tools | |
+4 −4 | version.mk |