Closes ISUP management and the channel to the TX board.
short isupTermMgmtAPI ( U8 board)
Argument |
Description |
board |
TX board number. |
Return value |
Description |
ISUP_SUCCESS |
|
ISUP_BOARD |
board is out of range. |
ISUP_UNBOUND |
Application failed to call isupInitMgmtAPI prior to this call. |
Call isupTermMgmtAPI to close ISUP management when the application has finished using it.
S16 status;
U8 boardNum=1;
if ((status = isupTermMgmtAPI(boardNum)) != ISUP_MGMT_SUCCESS)
{
printf( "Board %d Close ISUP Management and Channel Request failed: status = %d\n",
boardNum, status );
}
else
{
printf( "Successfully closed ISUP Management and Channel on board %d\n",
boardNum );
}