Remove use of deprecated code
Notably, faces/enable-local-control and faces/disable-local-control
management commands are removed in this commit.
Change-Id: I9ba45c9697eca418315c1c749a3c0c602a36f34e
Refs: #3988
diff --git a/rib/auto-prefix-propagator.cpp b/rib/auto-prefix-propagator.cpp
index 29321b4..ae5f563 100644
--- a/rib/auto-prefix-propagator.cpp
+++ b/rib/auto-prefix-propagator.cpp
@@ -1,6 +1,6 @@
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/**
- * Copyright (c) 2014-2016, Regents of the University of California,
+ * Copyright (c) 2014-2017, Regents of the University of California,
* Arizona Board of Regents,
* Colorado State University,
* University Pierre & Marie Curie, Sorbonne University,
@@ -272,9 +272,9 @@
{
NFD_LOG_INFO("advertise " << parameters.getName());
- ndn::Scheduler::Event refreshEvent =
+ scheduler::EventCallback refreshEvent =
bind(&AutoPrefixPropagator::onRefreshTimer, this, parameters, options);
- ndn::Scheduler::Event retryEvent =
+ scheduler::EventCallback retryEvent =
bind(&AutoPrefixPropagator::onRetryTimer, this, parameters, options,
std::min(m_maxRetryWait, retryWaitTime * 2));
@@ -381,7 +381,7 @@
void
AutoPrefixPropagator::afterPropagateSucceed(const ControlParameters& parameters,
const CommandOptions& options,
- const ndn::Scheduler::Event& refreshEvent)
+ const scheduler::EventCallback& refreshEvent)
{
NFD_LOG_TRACE("success to propagate " << parameters.getName());
@@ -403,7 +403,7 @@
const ControlParameters& parameters,
const CommandOptions& options,
time::seconds retryWaitTime,
- const ndn::Scheduler::Event& retryEvent)
+ const scheduler::EventCallback& retryEvent)
{
NFD_LOG_TRACE("fail to propagate " << parameters.getName()
<< "\n\t reason:" << response.getText()
diff --git a/rib/auto-prefix-propagator.hpp b/rib/auto-prefix-propagator.hpp
index efc48cb..cbbe362 100644
--- a/rib/auto-prefix-propagator.hpp
+++ b/rib/auto-prefix-propagator.hpp
@@ -1,6 +1,6 @@
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/**
- * Copyright (c) 2014-2016, Regents of the University of California,
+ * Copyright (c) 2014-2017, Regents of the University of California,
* Arizona Board of Regents,
* Colorado State University,
* University Pierre & Marie Curie, Sorbonne University,
@@ -310,7 +310,7 @@
void
afterPropagateSucceed(const ndn::nfd::ControlParameters& parameters,
const ndn::nfd::CommandOptions& options,
- const ndn::Scheduler::Event& refreshEvent);
+ const scheduler::EventCallback& refreshEvent);
/**
* @brief invoked after propagation fails.
@@ -331,7 +331,7 @@
const ndn::nfd::ControlParameters& parameters,
const ndn::nfd::CommandOptions& options,
time::seconds retryWaitTime,
- const ndn::Scheduler::Event& retryEvent);
+ const scheduler::EventCallback& retryEvent);
/**
* @brief invoked after revocation succeeds