isupTermMgmtAPI

Closes ISUP management and the channel to the TX board.

Prototype

short isupTermMgmtAPI ( U8 board)

Argument

Description

board

TX board number.


Return values

Return value

Description

ISUP_SUCCESS

 

ISUP_BOARD

board is out of range.

ISUP_UNBOUND

Application failed to call isupInitMgmtAPI prior to this call.


Details

Call isupTermMgmtAPI to close ISUP management when the application has finished using it.

Example

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 );
}