Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

Description

This hook function, if set, will be called each time a non-blocking IPv6 static address configuration process ends.

Prototype

Arguments

if_nbr

Network Interface number on which Static Address Configuration took place.

p_addr_cfgd

Pointer to IPv6 address configured, if any.
DEF_NULL, otherwise.  

addr_cfg_result

Result status of the IPv6 Static Address Configuration process.

Return Values

None.

Required Configuration

NET_IPv6_CFG_ADDR_AUTO_CFG_EN macro must be enabled in the net_cfg.h file.

Notes / Warnings

p_addr_cfgd is for read-only. It must not be modified at any point in this hook function.

This hook function is called with the Network Lock already acquired, therefore no network API functions can be called will inside this hook function.

Example Template

Below,  shows a possible implementation of the hook function. That code simply print in the debug console the IPv6 address configured and the final result of the IPv6 Static Address Configuration process.

  • No labels