timer_H method

void timer_H()

Implementation

void timer_H() {
  logger.debug('Timer H expired for transaction $id');

  if (state == TransactionState.COMPLETED) {
    logger.debug('ACK not received, dialog will be terminated');
  }

  stateChanged(TransactionState.TERMINATED);
  ua!.destroyTransaction(this);
}