eb3197fa35
Change-Id: I7e859989c833001f49b286d4a9917f4dc740b4a4
45 lines
1.1 KiB
C++
45 lines
1.1 KiB
C++
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
|
|
/**
|
|
* Copyright (C) 2014 Named Data Networking Project
|
|
* See COPYING for copyright and distribution information.
|
|
*/
|
|
|
|
#include "pit-face-record.hpp"
|
|
|
|
namespace nfd {
|
|
namespace pit {
|
|
|
|
FaceRecord::FaceRecord(shared_ptr<Face> face)
|
|
: m_face(face)
|
|
, m_lastNonce(0)
|
|
, m_lastRenewed(time::steady_clock::TimePoint::min())
|
|
, m_expiry(time::steady_clock::TimePoint::min())
|
|
{
|
|
}
|
|
|
|
FaceRecord::FaceRecord(const FaceRecord& other)
|
|
: m_face(other.m_face)
|
|
, m_lastNonce(other.m_lastNonce)
|
|
, m_lastRenewed(other.m_lastRenewed)
|
|
, m_expiry(other.m_expiry)
|
|
{
|
|
}
|
|
|
|
void
|
|
FaceRecord::update(const Interest& interest)
|
|
{
|
|
m_lastNonce = interest.getNonce();
|
|
m_lastRenewed = time::steady_clock::now();
|
|
|
|
static const time::milliseconds DEFAULT_INTEREST_LIFETIME = time::milliseconds(4000);
|
|
time::milliseconds lifetime = interest.getInterestLifetime();
|
|
if (lifetime < time::milliseconds::zero()) {
|
|
lifetime = DEFAULT_INTEREST_LIFETIME;
|
|
}
|
|
m_expiry = m_lastRenewed + time::milliseconds(lifetime);
|
|
}
|
|
|
|
|
|
} // namespace pit
|
|
} // namespace nfd
|