OpenSDN source code
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
bgp_lifetime.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013 Juniper Networks, Inc. All rights reserved.
3  */
4 
5 #include "bgp/bgp_lifetime.h"
6 
7 #include "bgp/bgp_server.h"
8 
10  : LifetimeManager(task_id), server_(server) {
11 }
12 
14 }
15 
17  return server_->IsReadyForDeletion();
18 }
bool IsReadyForDeletion()
Definition: bgp_server.cc:425
BgpLifetimeManager(BgpServer *server, int task_id)
Definition: bgp_lifetime.cc:9
BgpServer * server_
Definition: bgp_lifetime.h:19
virtual ~BgpLifetimeManager()
Definition: bgp_lifetime.cc:13
virtual bool MayDestroy()
Definition: bgp_lifetime.cc:16