1 /*************************************************************************** 2 * Copyright (c) 2024 Microsoft Corporation 3 * 4 * This program and the accompanying materials are made available under the 5 * terms of the MIT License which is available at 6 * https://opensource.org/licenses/MIT. 7 * 8 * SPDX-License-Identifier: MIT 9 **************************************************************************/ 10 11 12 /**************************************************************************/ 13 /**************************************************************************/ 14 /** */ 15 /** NetX Component */ 16 /** */ 17 /** Internet Protocol (IP) */ 18 /** */ 19 /**************************************************************************/ 20 /**************************************************************************/ 21 22 #define NX_SOURCE_CODE 23 24 25 /* Include necessary system files. */ 26 27 #include "nx_api.h" 28 #include "nx_ipv6.h" 29 #if defined(FEATURE_NX_IPV6) && defined(NX_IPV6_STATELESS_AUTOCONFIG_CONTROL) 30 #include "nx_ip.h" 31 32 /* Bring in externs for caller checking code. */ 33 NX_CALLER_CHECKING_EXTERNS 34 35 #endif /* FEATURE_NX_IPV6 && NX_IPV6_STATELESS_AUTOCONFIG_CONTROL */ 36 37 /**************************************************************************/ 38 /* */ 39 /* FUNCTION RELEASE */ 40 /* */ 41 /* _nxde_ipv6_stateless_address_autoconfig_disable PORTABLE C */ 42 /* 6.1 */ 43 /* AUTHOR */ 44 /* */ 45 /* Yuxin Zhou, Microsoft Corporation */ 46 /* */ 47 /* DESCRIPTION */ 48 /* */ 49 /* This function performs error checking on the IPv6 stateless address */ 50 /* auto configuratoin disable service */ 51 /* */ 52 /* INPUT */ 53 /* */ 54 /* ip_ptr IP instance pointer */ 55 /* interface_index The interface to operate on */ 56 /* */ 57 /* OUTPUT */ 58 /* */ 59 /* status Completion status */ 60 /* */ 61 /* CALLS */ 62 /* */ 63 /* _nxd_ipv6_stateless_address_autoconfig_disable */ 64 /* */ 65 /* */ 66 /* CALLED BY */ 67 /* */ 68 /* Application Code */ 69 /* */ 70 /* RELEASE HISTORY */ 71 /* */ 72 /* DATE NAME DESCRIPTION */ 73 /* */ 74 /* 05-19-2020 Yuxin Zhou Initial Version 6.0 */ 75 /* 09-30-2020 Yuxin Zhou Modified comment(s), */ 76 /* resulting in version 6.1 */ 77 /* */ 78 /**************************************************************************/ _nxde_ipv6_stateless_address_autoconfig_disable(NX_IP * ip_ptr,UINT interface_index)79UINT _nxde_ipv6_stateless_address_autoconfig_disable(NX_IP *ip_ptr, UINT interface_index) 80 { 81 82 #if defined(FEATURE_NX_IPV6) && defined(NX_IPV6_STATELESS_AUTOCONFIG_CONTROL) 83 UINT status; 84 85 /* Check for invalid input pointers. */ 86 if ((ip_ptr == NX_NULL) || (ip_ptr -> nx_ip_id != NX_IP_ID)) 87 { 88 return(NX_PTR_ERROR); 89 } 90 91 /* Validate the interface. */ 92 if (interface_index >= NX_MAX_PHYSICAL_INTERFACES) 93 { 94 return(NX_INVALID_INTERFACE); 95 } 96 97 /* Check for appropriate caller. */ 98 NX_INIT_AND_THREADS_CALLER_CHECKING 99 100 /* Call actual IPv6 stateless address autoconfig disable function. */ 101 status = _nxd_ipv6_stateless_address_autoconfig_disable(ip_ptr, interface_index); 102 103 /* Return completion status. */ 104 return(status); 105 106 #else 107 NX_PARAMETER_NOT_USED(ip_ptr); 108 NX_PARAMETER_NOT_USED(interface_index); 109 110 return(NX_NOT_SUPPORTED); 111 112 #endif /* FEATURE_NX_IPV6 && NX_IPV6_STATELESS_AUTOCONFIG_CONTROL */ 113 } 114 115