forked from ARMmbed/mbed-os
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Squashed 'connectivity/nanostack/sal-stack-nanostack/' changes from 2…
…25a4af..154db5425e 154db5425e Merge branch 'release_internal' into release_external dca258c3f0 Updated unit test 89df990e6d Set EAPOL relay state function to LLC as a callback 47d8f42bf5 Removed extra call to supplicant delete callback 00ebfd905f Added new configuration options for Border router 421f6a8191 Move RPL code to the 6lr state machine e1e43b8ac2 Corrected pae controller BR EUI-64 flagging aaefdaebab Refactored pae controller (ARMmbed#2707) b82e0ee19a Update copyright text in CMakeLists.txt files (ARMmbed#2706) 5791a22d37 Renamed bootstrap files and separated pae controller callback functions (ARMmbed#2703) 4e3ec07caf MAC beacon payload max MTU allocation limited to for support MTU size 127. a997ab6653 Iotthd 4698 (ARMmbed#2702) e64b057bff Adjusted security protocols timeouts (ARMmbed#2701) cb3db6419f Return invalid values from old API if new configuration is used 6872401f8d RPL address registration update 90a434d318 RPL DAO lifetime update e39f6432eb Forward RPL configuration unmodified 58da4d6c93 Sync Cmake updates from Mbed OS (ARMmbed#2697) 4c229b46c9 Adjust Wi-SUN host/router config - HAVE_RPL (ARMmbed#2696) 40bd2320ba Update release v15.0.0 details to CHANGELOG (ARMmbed#2694) git-subtree-dir: connectivity/nanostack/sal-stack-nanostack git-subtree-split: 154db5425eb9f0df82ee081cb05e7d80cda11415
- Loading branch information
Showing
83 changed files
with
3,344 additions
and
2,012 deletions.
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,33 @@ | ||
# Copyright (c) 2020-2021, Pelion and affiliates. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
add_subdirectory(source/6LoWPAN) | ||
add_subdirectory(source/BorderRouter) | ||
add_subdirectory(source/Common_Protocols) | ||
add_subdirectory(source/Core) | ||
add_subdirectory(source/DHCPv6_Server) | ||
add_subdirectory(source/DHCPv6_client) | ||
add_subdirectory(source/MAC) | ||
add_subdirectory(source/MLE) | ||
add_subdirectory(source/MPL) | ||
add_subdirectory(source/NWK_INTERFACE) | ||
add_subdirectory(source/RPL) | ||
add_subdirectory(source/Security) | ||
add_subdirectory(source/Service_Libs) | ||
add_subdirectory(source/configs) | ||
add_subdirectory(source/ipv6_stack) | ||
add_subdirectory(source/libDHCPv6) | ||
add_subdirectory(source/libNET) | ||
|
||
target_include_directories(mbed-nanostack-sal_stack | ||
INTERFACE | ||
. | ||
./nanostack | ||
./nanostack/platform | ||
./source | ||
) | ||
|
||
target_link_libraries(mbed-nanostack | ||
INTERFACE | ||
mbed-nanostack-coap_service | ||
) |
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
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
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
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,114 @@ | ||
# Copyright (c) 2020-2021, Pelion and affiliates. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
target_include_directories(mbed-nanostack-sal_stack | ||
INTERFACE | ||
. | ||
./Bootstraps | ||
./Fragmentation | ||
./IPHC_Decode | ||
./MAC | ||
./Mesh | ||
./ND | ||
./NVM | ||
./Thread | ||
./ws | ||
) | ||
|
||
target_sources(mbed-nanostack-sal_stack | ||
INTERFACE | ||
adaptation_interface.c | ||
|
||
Bootstraps/Generic/network_lib.c | ||
Bootstraps/Generic/protocol_6lowpan.c | ||
Bootstraps/Generic/protocol_6lowpan_bootstrap.c | ||
Bootstraps/Generic/protocol_6lowpan_interface.c | ||
|
||
Fragmentation/cipv6_fragmenter.c | ||
|
||
IPHC_Decode/6lowpan_iphc.c | ||
IPHC_Decode/iphc_compress.c | ||
IPHC_Decode/iphc_decompress.c | ||
IPHC_Decode/lowpan_context.c | ||
|
||
MAC/beacon_handler.c | ||
MAC/mac_data_poll.c | ||
MAC/mac_helper.c | ||
MAC/mac_ie_lib.c | ||
MAC/mac_pairwise_key.c | ||
MAC/mac_response_handler.c | ||
|
||
Mesh/mesh.c | ||
|
||
ND/nd_router_object.c | ||
|
||
NVM/nwk_nvm.c | ||
|
||
Thread/thread_bbr_api.c | ||
Thread/thread_bbr_commercial.c | ||
Thread/thread_beacon.c | ||
Thread/thread_bootstrap.c | ||
Thread/thread_border_router_api.c | ||
Thread/thread_ccm.c | ||
Thread/thread_commissioning_api.c | ||
Thread/thread_commissioning_if.c | ||
Thread/thread_common.c | ||
Thread/thread_dhcpv6_server.c | ||
Thread/thread_diagnostic.c | ||
Thread/thread_discovery.c | ||
Thread/thread_host_bootstrap.c | ||
Thread/thread_joiner_application.c | ||
Thread/thread_leader_service.c | ||
Thread/thread_lowpower_api.c | ||
Thread/thread_lowpower_private_api.c | ||
Thread/thread_management_api.c | ||
Thread/thread_management_client.c | ||
Thread/thread_management_if.c | ||
Thread/thread_management_server.c | ||
Thread/thread_mdns.c | ||
Thread/thread_meshcop_lib.c | ||
Thread/thread_mle_message_handler.c | ||
Thread/thread_nd.c | ||
Thread/thread_neighbor_class.c | ||
Thread/thread_net_config_api.c | ||
Thread/thread_network_data_lib.c | ||
Thread/thread_network_data_storage.c | ||
Thread/thread_network_synch.c | ||
Thread/thread_nvm_store.c | ||
Thread/thread_resolution_client.c | ||
Thread/thread_resolution_server.c | ||
Thread/thread_router_bootstrap.c | ||
Thread/thread_routing.c | ||
Thread/thread_test_api.c | ||
|
||
ws/ws_bbr_api.c | ||
ws/ws_bootstrap.c | ||
ws/ws_bootstrap_6lbr.c | ||
ws/ws_bootstrap_6ln.c | ||
ws/ws_bootstrap_6lr.c | ||
ws/ws_bootstrap_ffn.c | ||
ws/ws_cfg_settings.c | ||
ws/ws_common.c | ||
ws/ws_eapol_auth_relay.c | ||
ws/ws_eapol_pdu.c | ||
ws/ws_eapol_relay.c | ||
ws/ws_eapol_relay_lib.c | ||
ws/ws_empty_functions.c | ||
ws/ws_ie_lib.c | ||
ws/ws_llc_data_service.c | ||
ws/ws_management_api.c | ||
ws/ws_mpx_header.c | ||
ws/ws_neighbor_class.c | ||
ws/ws_pae_auth.c | ||
ws/ws_pae_controller.c | ||
ws/ws_pae_key_storage.c | ||
ws/ws_pae_lib.c | ||
ws/ws_pae_nvm_data.c | ||
ws/ws_pae_nvm_store.c | ||
ws/ws_pae_supp.c | ||
ws/ws_pae_time.c | ||
ws/ws_pae_timers.c | ||
ws/ws_phy.c | ||
ws/ws_stats.c | ||
ws/ws_test_api.c | ||
) |
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
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
Oops, something went wrong.