ha/service-mgmt/sm/src/sm_service_domain_neighbor_...

64 lines
2.8 KiB
C

//
// Copyright (c) 2014 Wind River Systems, Inc.
//
// SPDX-License-Identifier: Apache-2.0
//
#ifndef __SM_SERVICE_DOMAIN_NEIGHBOR_EXCHANGE_START_STATE_H__
#define __SM_SERVICE_DOMAIN_NEIGHBOR_EXCHANGE_START_STATE_H__
#include "sm_types.h"
#include "sm_service_domain_neighbor_table.h"
#ifdef __cplusplus
extern "C" {
#endif
// ****************************************************************************
// Service Domain Neighbor Exchange Start State - Entry
// ====================================================
extern SmErrorT sm_service_domain_neighbor_exchange_start_state_entry(
SmServiceDomainNeighborT* neighbor );
// ****************************************************************************
// ****************************************************************************
// Service Domain Neighbor Exchange Start State - Exit
// ===================================================
extern SmErrorT sm_service_domain_neighbor_exchange_start_state_exit(
SmServiceDomainNeighborT* neighbor );
// ****************************************************************************
// ****************************************************************************
// Service Domain Neighbor Exchange Start State - Transition
// =========================================================
extern SmErrorT sm_service_domain_neighbor_exchange_start_state_transition(
SmServiceDomainNeighborT* neighbor,
SmServiceDomainNeighborStateT from_state );
// ****************************************************************************
// ****************************************************************************
// Service Domain Neighbor Exchange Start State - Event Handler
// ============================================================
extern SmErrorT sm_service_domain_neighbor_exchange_start_state_event_handler(
SmServiceDomainNeighborT* neighbor,
SmServiceDomainNeighborEventT event, void* event_data[] );
// ****************************************************************************
// ****************************************************************************
// Service Domain Neighbor Exchange Start State - Initialize
// =========================================================
extern SmErrorT sm_service_domain_neighbor_exchange_start_state_initialize(
void );
// ****************************************************************************
// ****************************************************************************
// Service Domain Neighbor Exchange Start State - Finalize
// =======================================================
extern SmErrorT sm_service_domain_neighbor_exchange_start_state_finalize( void );
// ****************************************************************************
#ifdef __cplusplus
}
#endif
#endif // __SM_SERVICE_DOMAIN_NEIGHBOR_EXCHANGE_START_STATE_H__