Commit eb150a03 authored by Olivier Crête's avatar Olivier Crête

pseudotcp: Switch to using monotonic time

parent 153bbf6b
...@@ -203,9 +203,7 @@ bound(guint32 lower, guint32 middle, guint32 upper) ...@@ -203,9 +203,7 @@ bound(guint32 lower, guint32 middle, guint32 upper)
static guint32 static guint32
get_current_time(void) get_current_time(void)
{ {
GTimeVal tv; return g_get_monotonic_time () / 1000;
g_get_current_time (&tv);
return tv.tv_sec * 1000 + tv.tv_usec / 1000;
} }
static gboolean static gboolean
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment