Minor bug fix and some instrumentation stuff for testing.

This commit is contained in:
Adam Ierymenko 2016-08-09 17:00:01 -07:00
parent 0b0cda2be4
commit c9d7845fea
5 changed files with 47 additions and 10 deletions

View file

@ -82,9 +82,10 @@ private:
{
InetAddress mySurface;
uint64_t ts;
bool trusted;
PhySurfaceEntry() : mySurface(),ts(0) {}
PhySurfaceEntry(const InetAddress &a,const uint64_t t) : mySurface(a),ts(t) {}
PhySurfaceEntry() : mySurface(),ts(0),trusted(false) {}
PhySurfaceEntry(const InetAddress &a,const uint64_t t) : mySurface(a),ts(t),trusted(false) {}
};
const RuntimeEnvironment *RR;