Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
thread_extension.h
00001 /* 00002 * Copyright (c) 2016-2017, Arm Limited and affiliates. 00003 * SPDX-License-Identifier: BSD-3-Clause 00004 * 00005 * Redistribution and use in source and binary forms, with or without 00006 * modification, are permitted provided that the following conditions are met: 00007 * 00008 * 1. Redistributions of source code must retain the above copyright 00009 * notice, this list of conditions and the following disclaimer. 00010 * 2. Redistributions in binary form must reproduce the above copyright 00011 * notice, this list of conditions and the following disclaimer in the 00012 * documentation and/or other materials provided with the distribution. 00013 * 3. Neither the name of the copyright holder nor the 00014 * names of its contributors may be used to endorse or promote products 00015 * derived from this software without specific prior written permission. 00016 * 00017 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 00018 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00019 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00020 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 00021 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 00022 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 00023 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 00024 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 00025 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 00026 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 00027 * POSSIBILITY OF SUCH DAMAGE. 00028 */ 00029 00030 /** 00031 * \brief Thread extensions for network bootstrap. 00032 */ 00033 00034 #ifndef THREAD_EXTENSION_H_ 00035 #define THREAD_EXTENSION_H_ 00036 00037 #ifdef __cplusplus 00038 extern "C" { 00039 #endif 00040 00041 struct discovery_response_list; 00042 00043 #define thread_extension_allocate(cur) 00044 #define thread_extension_free(cur) 00045 #define thread_extension_init(interface_id,coap_service_id) 00046 #define thread_extension_network_prefix_get(interface_id,options_ptr,prefix_ptr,prefix_len) (-1) 00047 #define thread_extension_network_data_process(cur) 00048 #define thread_extension_primary_bbr_get(cur,addr_ptr,seq_ptr,timer1_ptr, timer2_ptr) (-1) 00049 #define thread_extension_address_registration(interface,addr,child_mac64) 00050 #define thread_extension_address_generate(cur) 00051 #define thread_extension_aloc_generate(cur) 00052 #define thread_extension_aloc_map(cur, addr16) false 00053 #define thread_extension_mcast_subscrition_change(interface, group, added) 00054 #define thread_extension_route_set(cur) 00055 #define thread_extension_activate(cur) 00056 #define thread_extension_enabled(cur) (false) 00057 #define thread_extension_version_check(version) (false) 00058 #define thread_extension_discover_response_read(nwk_info, discover_response_tlv, data_ptr, data_len) 00059 #define thread_extension_discover_response_tlv_write(data, version, extension_bit) (data) 00060 #define thread_extension_joiner_router_init(interface_id) 00061 #define thread_extension_joining_enabled(interface_id) false 00062 #define thread_extension_discover_response_len(cur) 0 00063 #define thread_extension_discover_response_write(cur, ptr) (ptr) 00064 00065 #ifdef __cplusplus 00066 } 00067 #endif 00068 00069 #endif /* THREAD_EXTENSION_H_ */
Generated on Tue Jul 12 2022 12:22:25 by
