#include "bgp/state_machine.h"
#include <boost/statechart/custom_reaction.hpp>
#include <boost/statechart/state.hpp>
#include <boost/statechart/state_machine.hpp>
#include <boost/statechart/transition.hpp>
#include <algorithm>
#include <list>
#include <string>
#include <typeinfo>
#include "base/task_annotations.h"
#include "bgp/bgp_log.h"
#include "bgp/bgp_peer.h"
#include "bgp/bgp_peer_close.h"
#include "bgp/bgp_peer_types.h"
#include "bgp/bgp_server.h"
#include "bgp/bgp_session.h"
#include "bgp/bgp_session_manager.h"
Go to the source code of this file.
#define SM_LOG |
( |
|
level, |
|
|
|
_Msg |
|
) |
| |
Value:do { \
ostringstream out; \
out << _Msg; \
BGP_LOG(BgpPeerStateMachine, level, \
peer_ ? peer_->ToUVEKey() : "", \
out.str()); \
} while (false)
#define BGP_LOG(obj, level, flags,...)
#define BGP_LOG_FLAG_SYSLOG
#define BGP_LOG_SERVER(peer, table)
Definition at line 44 of file state_machine.cc.
#define SM_LOG_NOTICE |
( |
|
_Msg | ) |
|
Value:do { \
ostringstream out; \
out << _Msg; \
peer_ ? peer_->ToUVEKey() : "", \
out.str()); \
} while (false)
#define BGP_LOG_FLAG_SYSLOG
#define BGP_LOG_SERVER(peer, table)
#define BGP_LOG_NOTICE(obj, flags,...)
Definition at line 56 of file state_machine.cc.
const std::string state_names[] |
|
static |
Initial value:= {
"Idle",
"Active",
"Connect",
"OpenSent",
"OpenConfirm",
"Established"
}
Definition at line 1569 of file state_machine.cc.