/*******************************************************************************
################################################################################
- # Copyright (c) [20172019] [Radisys] #
+ # Copyright (c) [2017-2019] [Radisys] #
# #
# 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/LICENSE2.0 #
+ # 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, #
################################################################################
*******************************************************************************/
-#ifndef _LWR_MAC_NFAPI_H_
-#define _LWR_MAC_NFAPI_H_
+ #ifndef _LWR_MAC_NFAPI_H_
+ #define _LWR_MAC_NFAPI_H_
#include "nfapi_interface.h"
uint16_t port /* port number */
)
{
- S32 ret;
- uint32_t cnt;
+ int32_t tempErrorNo=0;
+ S32 ret =0;
+ uint32_t cnt=0;
/* cm_inet_c_001.main_46: Removed SS_LINUX flag */
- S32 idx;
+ S32 idx=0;
/* cm_inet_c_001.main_64: New variable used as an argument for sctp_connectx */
#ifdef SCTP_CONNECTX_NEW
#endif /* CMINET_SUN_CONNECTX */
#endif /* SS_LINUX */
-
+ tempErrorNo = INET_ERR_CODE;
if (ret == INET_ERR)
{
#ifdef CMINETDBG
/* cm_inet_c_001.main_54: CMINETLOGERROR added insted of SDisp */
/* cm_inet_c_001.main_62:Warning fix */
snprintf(prntBuf, CMINET_PRNT_BUF_SIZE, "CmInetSctpConnectx() Failed : error(%d), port(0x%1x),"
- " sockFd->fd(%ld)\n", INET_ERR_CODE, port, sockFd->fd);
+ " sockFd->fd(%ld)\n", tempErrorNo, port, sockFd->fd);
CMINETLOGERROR(ERRCLS_DEBUG, ECMINET010, 0, prntBuf);
#else
DU_LOG("\nCmInetSctpConnectx() Failed : error(%d), port(0x%1x),\
- sockFd->fd(%d)\n", INET_ERR_CODE, port, sockFd->fd);
+ sockFd->fd(%d)\n", tempErrorNo, port, sockFd->fd);
#endif /*ALIGN_64BIT*/
#endif /* CMINETDBG */
- switch (INET_ERR_CODE)
+ switch (tempErrorNo)
{
/* non-blocking: connection is in progress */
case ERR_INPROGRESS: