EigrpTimer.msg

Msg File src/inet/routing/eigrp/EigrpTimer.msg

Name Type Description
EigrpTimerType enum

types of timers

EigrpTimer message

general timer structure

Source code

//
// Copyright (C) 2009 - today Brno University of Technology, Czech Republic
//
// SPDX-License-Identifier: LGPL-3.0-or-later
//
// @author Jan Zavrel ([email protected])
// @author Jan Bloudicek ([email protected])
// @author Vit Rek ([email protected])
// @author Vladimir Vesely ([email protected])
// @copyright Brno University of Technology (www.fit.vutbr.cz) under GPLv3

// types of timers
enum EigrpTimerType
{
    EIGRP_HELLO_TIMER = 1;      // Hello timer
    EIGRP_HOLD_TIMER = 2;       // Hold timer
//    EIGRP_PACING_TIMER = 3;    // Pacing timer
};

// general timer structure
message EigrpTimer
{
    char timerKind enum(EigrpTimerType);
};