void
RequestAutoRetry::sendInterest()
{
  m_interest.refreshNonce();
  BOOST_ASSERT(m_interest.hasNonce());

  ++m_nSent;
  m_face.request(m_interest,
                 bind(&RequestAutoRetry::handleData, this, _2),
                 bind(&RequestAutoRetry::handleNack, this, _2),
                 bind(&RequestAutoRetry::handleTimeout, this),
                 m_retxInterval);
}