File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 207
207
// Fragmentation on, as per IPv4 default
208
208
#define LWIP_IPV6_FRAG LWIP_IPV6
209
209
210
- // Queuing "disabled", as per IPv4 default (so actually queues 1)
211
- #define LWIP_ND6_QUEUEING 0
210
+ // Queuing, default is "disabled", as per IPv4 default (so actually queues 1)
211
+ #define LWIP_ND6_QUEUEING MBED_CONF_ND6_QUEUEING
212
212
213
213
// Debug Options
214
214
#define NETIF_DEBUG LWIP_DBG_OFF
336
336
#define LWIP_USE_EXTERNAL_MBEDTLS 0
337
337
#endif
338
338
339
+ #define LWIP_ND6_RDNSS_MAX_DNS_SERVERS MBED_CONF_LWIP_ND6_RDNSS_MAX_DNS_SERVERS
340
+
339
341
#endif /* LWIPOPTS_H_ */
Original file line number Diff line number Diff line change 153
153
"raw-socket-enabled" : {
154
154
"help" : " Enable lwip raw sockets, required for Mbed OS ICMPSocket" ,
155
155
"value" : false
156
+ },
157
+ "nd6-rdnss-max-dns-servers" : {
158
+ "help" : " number of RDNS from RA (router advertisements) to be used, RFC5006" ,
159
+ "value" : 2
160
+ },
161
+ "nd6_queueing" : {
162
+ "help" : " queue outgoing IPv6 packets while MAC address is being resolved" ,
163
+ "value" : 0
156
164
}
157
165
},
158
166
"target_overrides" : {
You can’t perform that action at this time.
0 commit comments