From 03e0fb206d3f5709868f03bc7a401cb666c38ffb Mon Sep 17 00:00:00 2001 From: w00t Date: Mon, 15 Oct 2007 21:03:30 +0000 Subject: InspTimer -> Timer git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8205 e03df62e-2008-0410-955e-edbf42e46eb7 --- include/inspsocket.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/inspsocket.h') diff --git a/include/inspsocket.h b/include/inspsocket.h index d165d64f2..d4ff58d93 100644 --- a/include/inspsocket.h +++ b/include/inspsocket.h @@ -72,7 +72,7 @@ using irc::sockets::insp_aton; /** Used to time out socket connections */ -class CoreExport SocketTimeout : public InspTimer +class CoreExport SocketTimeout : public Timer { private: /** InspSocket the class is attached to @@ -92,7 +92,7 @@ class CoreExport SocketTimeout : public InspTimer * @param secs_from_now Seconds from now to time out * @param now The current time */ - SocketTimeout(int fd, InspIRCd* Instance, InspSocket* thesock, long secs_from_now, time_t now) : InspTimer(secs_from_now, now), sock(thesock), ServerInstance(Instance), sfd(fd) { }; + SocketTimeout(int fd, InspIRCd* Instance, InspSocket* thesock, long secs_from_now, time_t now) : Timer(secs_from_now, now), sock(thesock), ServerInstance(Instance), sfd(fd) { }; /** Handle tick event */ virtual void Tick(time_t now); -- cgit v1.2.3