From: Guilherme Maciel Ferreira Date: Wed, 14 Mar 2012 00:28:28 +0000 (-0300) Subject: Removing LocalNetworkInterfaceName attribute, it is no longer used in this class. X-Git-Tag: v1.4~3 X-Git-Url: http://developer.intra2net.com/git/?a=commitdiff_plain;h=5a936216fab793b7f9afa45d04102ffdef705499;p=pingcheck Removing LocalNetworkInterfaceName attribute, it is no longer used in this class. --- diff --git a/src/host/pingscheduler.cpp b/src/host/pingscheduler.cpp index 85ca13b..c28e2be 100644 --- a/src/host/pingscheduler.cpp +++ b/src/host/pingscheduler.cpp @@ -56,7 +56,6 @@ PingScheduler::PingScheduler( ) : IoService(), - LocalNetworkInterfaceName( network_interface ), NextPingTimer( IoService ), TimeSentLastPing( microsec_clock::universal_time() ), PingIntervalInSec( ping_interval_in_sec ), diff --git a/src/host/pingscheduler.h b/src/host/pingscheduler.h index f475250..eebe38e 100644 --- a/src/host/pingscheduler.h +++ b/src/host/pingscheduler.h @@ -94,8 +94,6 @@ private: /// Service object, which has the event loop boost::asio::io_service IoService; - /// Name of the network device used to send the packets - std::string LocalNetworkInterfaceName; /// Timer to trigger the next ping boost::asio::deadline_timer NextPingTimer; /// Keeps track of the time when the last ping was send