Ignore:
Timestamp:
Jun 22, 2021, 9:00:19 PM (3 years ago)
Author:
coas-nagasima
Message:

WolfSSLとAzure IoT SDKを更新

File:
1 edited

Legend:

Unmodified
Added
Removed
  • azure_iot_hub_f767zi/trunk/asp_baseplatform/lwip/contrib-2.1.0/addons/ipv6_static_routing/README

    r457 r464  
    1 A simple routing table implementation for addition, deletion and lookup of IPv6 routes.ツ
     1A simple routing table implementation for addition, deletion and lookup of IPv6 routes. 
    22
    33APIs are:
    441) s8_t ip6_add_route_entry(struct ip6_prefix *ip6_prefix,
    5 ï¾‚ ツ ツ ツ ツ ツ ツ ツ ツ ツ ツ ツ ツ ツ struct netif *netif,
    6 ï¾‚ ツ ツ ツ ツ ツ ツ ツ ツ ツ ツ ツ ツ ツ ip6_addr_t *gateway,
    7 ï¾‚ ツ ツ ツ ツ ツ ツ ツ ツ ツ ツ ツ ツ ツ s8_t *index);
     5                            struct netif *netif,
     6                            ip6_addr_t *gateway,
     7                            s8_t *index);
    88
    992) err_t ip6_remove_route_entry(struct ip6_prefix *ip6_prefix);
     
    17176) struct ip6_route_entry *ip6_get_route_table(void);
    1818
    19 For route lookup from the table, TheツLWIP_HOOK_IP6_ROUTE hook in ip6_route(..) of ip6.c
     19For route lookup from the table, The LWIP_HOOK_IP6_ROUTE hook in ip6_route(..) of ip6.c
    2020could be assigned to the ip6_static_route() API of this implementation to return the
    2121appropriate netif.
    2222
    23 -- The application can add routes using the API ip6_add_route_entry(..).ツ
    24 ï¾‚ ツThis API adds the ip6 prefix route into the static route table while
    25 ï¾‚ ツkeeping all entries sorted in decreasing order of prefix length.
    26 ï¾‚ ツSubsequently, a linear search down the list can be performed to retrieve a
    27 ï¾‚ ツmatching route entry for a Longest Prefix Match.
    28 ï¾‚ ツThe prefix length is expected to be at an 8-bit boundary. While this isツ
    29 ï¾‚ ツa limitation, it would serve most practical purposes.
     23-- The application can add routes using the API ip6_add_route_entry(..). 
     24   This API adds the ip6 prefix route into the static route table while
     25   keeping all entries sorted in decreasing order of prefix length.
     26   Subsequently, a linear search down the list can be performed to retrieve a
     27   matching route entry for a Longest Prefix Match.
     28   The prefix length is expected to be at an 8-bit boundary. While this is 
     29   a limitation, it would serve most practical purposes.
    3030
    3131-- The application can remove routes using the API ip6_remove_route_entry(..).
    3232
    33 -- The application can find a route entry for a specific address using theツ
    34 ï¾‚ ツip6_find_route_entry() function which returns the index of the found entry.ツ
    35 ï¾‚ ツThis is used internally by the route lookup function ip6_static_route() API.
     33-- The application can find a route entry for a specific address using the 
     34   ip6_find_route_entry() function which returns the index of the found entry. 
     35   This is used internally by the route lookup function ip6_static_route() API.
    3636
    37 -- To fetch the gateway IPv6 address for a specific destination IPv6ツ
    38 ï¾‚ ツaddress and target netif, the application can call ip6_get_gateway(..).
     37-- To fetch the gateway IPv6 address for a specific destination IPv6 
     38   address and target netif, the application can call ip6_get_gateway(..).
    3939   This API could be assigned to the LWIP_HOOK_ND6_GET_GW() if a gateway has
    4040   been added as part of the ip6_add_route_entry().
    4141
    42 -- To fetch a pointer to the head of the table, the application can callツ
    43 ï¾‚ ツip6_get_route_table().
     42-- To fetch a pointer to the head of the table, the application can call 
     43   ip6_get_route_table().
Note: See TracChangeset for help on using the changeset viewer.