Skip to content

Instantly share code, notes, and snippets.

@gorgonical
gorgonical / router1.log
Created February 21, 2017 23:30
This is the log from the router mimicking a testbed router in my minindn integration test of Readvertise
1487718458.604540 DEBUG: [BestRouteStrategy2] /localhost/nfd/faces/events/%FE%0C?ndn.InterestLifetime=60000&ndn.Nonce=3545458936 from=262 newPitEntry-to=1
1487718458.604644 DEBUG: [Forwarder] onIncomingInterest face=260 interest=/localhost/nfd/fib/add-nexthop/h%17%07%0E%08%03ndn%08%07endhosti%02%01%03j%01%00/%00%00%01Zb%EE%24%E6/%13%88%DE%83%8F%A5%F9%A0/%16R%1B%01%01%1CM%07K%08%03ndn%08%0Crouter1-site%08%08%C1.Router%08%02cs%08%07router1%08%03KEY%08%11ksk-1487718229560%08%07ID-CERT/%17%FD%01%00%2C%5C%8E%ED%83y%80%25%06V%40l%FD%0D%FA%BF%18%E3%DF%FDr%94%DD%DB%FFr%27%7D%13%DF%EEt%89%C6%B0%A4%7E%98%3D%D4%03%AC%0D%A0%89%21%EE%A6%210%BB%F6%C2V%7B%82%DA%09%93%40%CD%94%16%9F%2C%8F%D1p%B8%7C%D9%D8%5B%A9%94%BD%5E%83%25%FA%97%AE%CAu%112%26%101H%E6%7C%D7%C8%22P%F0h%B44Q%BF%97%D8d%BD%DA%A7%15%07%CFp%8B%B6T%A6%CD%9D%9C%EBKd%D2%E2%E4y%FC%93%E0V5%D3%96v%E4%97Int%24%0B%ED%CC%DD%E90%06%3E%1A%E7%80%9Fy%2A%CC%BB%03%00pO2%10%9E%DB%05%BB%B7.%B7%88%8B%E8%0A%9F%98%9D%86g%DE%C9%E44%D8%0F%8DN%0A%C6F%C1%25%0D1%B3%1B%D0%E3%C0%F8%25%FC%A
# -*- Mode:python; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
#
# Copyright (C) 2015-2017, The University of Memphis,
# Arizona Board of Regents,
# Regents of the University of California.
#
# This file is part of Mini-NDN.
# See AUTHORS.md for a complete list of Mini-NDN authors and contributors.
#
# Mini-NDN is free software: you can redistribute it and/or modify
...
if (route != m_routes.end()) {
NFD_LOG_DEBUG("Attempting to withdraw a route with FaceId: " << routeRef.route->faceId
<< " and origin " << routeRef.route->origin);
// Because they are const in the container, and we can't have a meaningful copy constructor
// because of ScopedEventId, I'm not entirely sure what to do here. Should I pop from the
// container using move semantics?
ReadvertisedRoute* tempRoute = const_cast<ReadvertisedRoute*>(&(*route));
tempRoute->removeRoute(routeRef);