0
mirror of https://github.com/Indemsys/Frequency_Inverter.git synced 2026-05-05 13:17:53 +00:00
Files
2022-01-04 12:22:53 +02:00

186 lines
5.2 KiB
C

/**HEADER********************************************************************
*
* Copyright (c) 2008 Freescale Semiconductor;
* All Rights Reserved
*
* Copyright (c) 2004-2008 Embedded Access Inc.;
* All Rights Reserved
*
* Copyright (c) 1989-2008 ARC International;
* All Rights Reserved
*
***************************************************************************
*
* THIS SOFTWARE IS PROVIDED BY FREESCALE "AS IS" AND ANY EXPRESSED OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL FREESCALE OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*
**************************************************************************
*
* $FileName: ifrem.c$
* $Version : 3.8.5.0$
* $Date : Jun-14-2012$
*
* Comments:
*
* This file contains the interface functions to the
* packet driver interface.
*
*END************************************************************************/
#include <rtcs.h>
#include "rtcs_prv.h"
#include "tcpip.h"
#include "ip_prv.h"
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : RTCS_if_remove
* Returned Value : RTCS_OK or error code
* Comments :
* Unregister a hardware interface with RTCS.
*
*END*-----------------------------------------------------------------*/
uint_32 RTCS_if_remove
(
_rtcs_if_handle handle
/* [IN] the RTCS interface state structure */
)
{ /* Body */
IPIF_PARM parms;
parms.ihandle = handle;
return RTCSCMD_issue(parms, IPIF_remove);
} /* Endbody */
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : RTCS_if_unbind
* Returned Value : RTCS_OK or error code
* Comments :
* Unbind an IP address from a registered hardware interface.
*
*END*-----------------------------------------------------------------*/
uint_32 RTCS_if_unbind
(
_rtcs_if_handle handle,
/* [IN] the RTCS interface state structure */
_ip_address address
/* [IN] the IP address for the interface */
)
{ /* Body */
IPIF_PARM parms;
parms.ihandle = handle;
parms.address = address;
return RTCSCMD_issue(parms, IPIF_unbind);
} /* Endbody */
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : RTCS_gate_remove
* Returned Value : RTCS_OK or error code
* Comments :
* Register a gateway with RTCS.
*
*END*-----------------------------------------------------------------*/
uint_32 RTCS_gate_remove
(
_ip_address gateway,
/* [IN] the IP address of the gateway */
_ip_address network,
/* [IN] the IP (sub)network to route */
_ip_address netmask
/* [IN] the IP (sub)network mask to route */
)
{ /* Body */
#if RTCSCFG_ENABLE_GATEWAYS
IPIF_PARM parms;
parms.address = gateway;
parms.network = network;
parms.netmask = netmask;
/* Start CR 1133 */
parms.locmask = 0;
/* End CR 1133 */
return RTCSCMD_issue(parms, IPIF_gate_remove);
#else
return RTCSERR_FEATURE_NOT_ENABLED;
#endif
} /* Endbody */
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : RTCS_gate_remove_metric
* Returned Value : RTCS_OK or error code
* Comments :
* Removes a gateway from RTCS if the metric matches the route.
*
*END*-----------------------------------------------------------------*/
uint_32 RTCS_gate_remove_metric
(
_ip_address gateway,
/* [IN] the IP address of the gateway */
_ip_address network,
/* [IN] the IP (sub)network to route */
_ip_address netmask,
/* [IN] the IP (sub)network mask to route */
uint_16 metric
/* [IN] the metric of the gateway */
)
{ /* Body */
#if RTCSCFG_ENABLE_GATEWAYS
IPIF_PARM parms;
parms.address = gateway;
parms.network = network;
parms.netmask = netmask;
parms.locmask = metric;
return RTCSCMD_issue(parms, IPIF_gate_remove);
#else
return RTCSERR_FEATURE_NOT_ENABLED;
#endif
} /* Endbody */
#if RTCSCFG_ENABLE_IP6
/************************************************************************
* NAME: RTCS6_if_unbind_addr
* RETURNS : RTCS_OK or error code
* DESCRIPTION: Unbind an IPv6 address from a registered hardware interface.
*************************************************************************/
uint_32 RTCS6_if_unbind_addr ( _rtcs_if_handle handle /* [IN] the RTCS interface state structure */,
in6_addr ip_addr /* [IN] the IP address for the interface */)
{
IP6_IF_PARM parms;
parms.ihandle = handle;
parms.ip_addr = ip_addr;
return RTCSCMD_issue(parms, IP6_IF_unbind_addr);
}
#endif /* RTCSCFG_ENABLE_IP6 */
/* EOF */