/* NetLink Sockets: Networking C++ library Copyright 2012 Pedro Francisco Pareja Ruiz (PedroPareja@Gmail.com) This file is part of NetLink Sockets. NetLink Sockets is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. NetLink Sockets is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with NetLink Sockets. If not, see . */ #include "util.h" unsigned long long NL_NAMESPACE_NAME::getTime() { #ifdef OS_WIN32 SYSTEMTIME now; GetSystemTime(&now); unsigned long long milisec = now.wHour *3600*1000 + now.wMinute *60*1000 + now.wSecond *1000 + now.wMilliseconds; return(milisec); #else struct timeval now; gettimeofday(&now, NULL); unsigned long long milisec = now.tv_sec * 1000 + now.tv_usec / 1000.0; return(milisec); #endif }