| /* -*- 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" |
| FaceRecord::FaceRecord(shared_ptr<Face> face) |
| FaceRecord::FaceRecord(const FaceRecord& other) |
| , m_lastNonce(other.m_lastNonce) |
| , m_lastRenewed(other.m_lastRenewed) |
| , m_expiry(other.m_expiry) |
| FaceRecord::update(const Interest& interest) |
| m_lastNonce = interest.getNonce(); |
| m_lastRenewed = time::now(); |
| m_expiry = m_lastRenewed + time::milliseconds(interest.getInterestLifetime()); |