mirror of https://github.com/ARMmbed/mbed-os.git
98 lines
3.7 KiB
C
98 lines
3.7 KiB
C
/*
|
|
* Copyright (c) 2014-2017, Arm Limited and affiliates.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
/*
|
|
* \file DHCPv6_server_service.h
|
|
* \brief Add short description about this file!!!
|
|
*
|
|
*/
|
|
|
|
#ifndef DHCPV6_SERVER_SERVICE_H_
|
|
#define DHCPV6_SERVER_SERVICE_H_
|
|
/* Initialize dhcp Global address server.
|
|
*
|
|
* This instance needs to bee initialized once for each thread network interface.
|
|
* if only one thread instance is supported this is needed to call only once.
|
|
*
|
|
* /param interface interface id of this thread instance.
|
|
* /param guaPrefix Global prefix /64
|
|
* /param serverDUID Server Device ID (64-bit MAC)
|
|
* /param serverDUIDType
|
|
* /param maxClientCnt
|
|
* /param enableAddressMapping
|
|
*
|
|
*/
|
|
int DHCPv6_server_service_init(int8_t interface, uint8_t guaPrefix[static 16], uint8_t serverDUID[static 8], uint16_t serverDUIDType);
|
|
|
|
/* Delete dhcp thread dhcp router ID server.
|
|
*
|
|
* When this is called it close selected service and free all allocated memory.
|
|
*
|
|
* /param interface interface id of this thread instance.
|
|
* /param guaPrefix Prefix which will be removed
|
|
* /param delete_gua_addresses Whether or not assigned addresses with the prefix should be removed from the interface.
|
|
*/
|
|
void DHCPv6_server_service_delete(int8_t interface, uint8_t guaPrefix[static 16], bool delete_gua_addresses);
|
|
|
|
|
|
void DHCPv6_server_service_timeout_cb(uint32_t timeUpdateInSeconds);
|
|
|
|
//void DHCPv6_GUA64_ML64_route_control(int8_t interfaceId, uint8_t *allocatedGuaAddress, uint8_t *clientEUID64, uint8_t *meshLocalPrefix, bool deleteMapping);
|
|
|
|
/* Control GUA address for client by DUI.Default value is true
|
|
*
|
|
*
|
|
* /param interface interface id of this thread instance.
|
|
* /param guaPrefix Prefix which will be removed
|
|
* /param mode true trig autonous mode, false define address by default suffics + client id
|
|
*/
|
|
int DHCPv6_server_service_set_address_autonous_flag(int8_t interface, uint8_t guaPrefix[static 16], bool mode);
|
|
|
|
|
|
/* Enable or disable GUA64 Address mapping to ML64
|
|
*
|
|
*
|
|
* /param interface interface id of this thread instance.
|
|
* /param guaPrefix Prefix which will be removed
|
|
* /param mode
|
|
* /param meshLocalPrefix mesh local prefix for generate ML6 from client EUID64
|
|
*/
|
|
int DHCPv6_server_service_set_gua_address_mapping(int8_t interface, uint8_t guaPrefix[static 16], bool mode, uint8_t meshLocalPrefix[8]);
|
|
|
|
/* SET max accepted clients to server, Default is 200
|
|
*
|
|
*
|
|
* /param interface interface id of this thread instance.
|
|
* /param guaPrefix Prefix which will be removed
|
|
* /param maxClientCount
|
|
*/
|
|
int DHCPv6_server_service_set_max_clients_accepts_count(int8_t interface, uint8_t guaPrefix[static 16], uint32_t maxClientCount);
|
|
|
|
|
|
/* SET Address Valid Lifetime parameter for allocated address, Default is 7200 seconds
|
|
*
|
|
*
|
|
* /param interface interface id of this thread instance.
|
|
* /param guaPrefix Prefix which will be removed
|
|
* /param validLifeTimne in seconds
|
|
*/
|
|
int DHCPv6_server_service_set_address_validlifetime(int8_t interface, uint8_t guaPrefix[static 16], uint32_t validLifeTimne);
|
|
|
|
|
|
int DHCPv6_server_service_gua_target_mac_check(int8_t interfaceId, const uint8_t *targetGUA, uint8_t *targetEUI64);
|
|
#endif /* DHCPV6_SERVER_SERVICE_H_ */
|