OpenSDN source code
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
controller/src/bfd/main.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017 Juniper Networks, Inc. All rights reserved.
3  */
4 #include "base/logging.h"
5 #include "bfd/contrail_bfd.h"
6 
7 int main(int argc, char *argv[]) {
8  LoggingInit();
9  ContrailBfd contrail_bfd;
10 
11  // Event loop.
12  contrail_bfd.evm()->Run();
13  return 0;
14 }
void LoggingInit()
Definition: logging.cc:51