diff options
Diffstat (limited to 'src/syncRouteCommand.h')
-rw-r--r-- | src/syncRouteCommand.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/syncRouteCommand.h b/src/syncRouteCommand.h index 6ad87ae..0d66ef3 100644 --- a/src/syncRouteCommand.h +++ b/src/syncRouteCommand.h @@ -48,14 +48,14 @@ public: private: SyncRouteCommand(const SyncRouteCommand&); - u_int16_t count_; + uint16_t count_; NetworkPrefix addr_; friend class boost::serialization::access; template<class Archive> void serialize(Archive& ar, const unsigned int version) { Lock lock(gRoutingTable.getMutex()); ar& addr_; - // u_int16_t & mux (gRoutingTable.getOrNewRoutingTEUnlocked(addr_)); + // uint16_t & mux (gRoutingTable.getOrNewRoutingTEUnlocked(addr_)); // ar & mux; ar & (*(gRoutingTable.getOrNewRoutingTEUnlocked(addr_))); gRoutingTable.updateRouteTreeUnlocked(addr_); |