TraversalServer: use C++ <chrono> instead of gettimeofday

This commit is contained in:
Michael M 2017-11-01 14:56:17 -07:00 committed by Léo Lam
parent e7bc86881d
commit 916a97b869

View file

@ -3,13 +3,13 @@
// The central server implementation.
#include <arpa/inet.h>
#include <cerrno>
#include <chrono>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <fcntl.h>
#include <netinet/in.h>
#include <sys/socket.h>
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>
#include <unordered_map>
@ -411,12 +411,9 @@ int main()
// note: switch to recvmmsg (yes, mmsg) if this becomes
// expensive
rv = recvfrom(sock, &packet, sizeof(packet), 0, (sockaddr*)&raddr, &addrLen);
if (gettimeofday(&tv, nullptr) < 0)
{
perror("gettimeofday");
exit(1);
}
currentTime = (u64)tv.tv_sec * 1000000 + tv.tv_usec;
currentTime = std::chrono::duration_cast<std::chrono::microseconds>(
std::chrono::system_clock::now().time_since_epoch())
.count();
if (rv < 0)
{
if (errno != EINTR && errno != EAGAIN)