1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
/*
* Copyright (c) 2002-2015 Balabit
* Copyright (c) 2015 Viktor Juhasz <viktor.juhasz@balabit.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* As an additional exemption you are allowed to compile & link against the
* OpenSSL libraries as published by the OpenSSL project. See the file
* COPYING for details.
*
*/
#include "timestamp-serialize.h"
static gboolean
_write_log_stamp(SerializeArchive *sa, const UnixTime *stamp)
{
return serialize_write_uint64(sa, stamp->ut_sec) &&
serialize_write_uint32(sa, stamp->ut_usec) &&
serialize_write_uint32(sa, stamp->ut_gmtoff);
}
static gboolean
_read_log_stamp(SerializeArchive *sa, UnixTime *stamp)
{
guint64 val64;
guint32 val;
if (!serialize_read_uint64(sa, &val64))
return FALSE;
stamp->ut_sec = (gint64) val64;
if (!serialize_read_uint32(sa, &val))
return FALSE;
stamp->ut_usec = val;
if (!serialize_read_uint32(sa, &val))
return FALSE;
stamp->ut_gmtoff = (gint) val;
return TRUE;
}
gboolean
timestamp_serialize(SerializeArchive *sa, UnixTime *timestamps)
{
return _write_log_stamp(sa, ×tamps[LM_TS_STAMP]) &&
_write_log_stamp(sa, ×tamps[LM_TS_RECVD]) &&
_write_log_stamp(sa, ×tamps[LM_TS_PROCESSED]);
}
gboolean
timestamp_deserialize_legacy(SerializeArchive *sa, UnixTime *timestamps)
{
return (_read_log_stamp(sa, ×tamps[LM_TS_STAMP]) &&
_read_log_stamp(sa, ×tamps[LM_TS_RECVD]));
}
gboolean
timestamp_deserialize(SerializeArchive *sa, UnixTime *timestamps)
{
return (timestamp_deserialize_legacy(sa, timestamps) &&
_read_log_stamp(sa, ×tamps[LM_TS_PROCESSED]));
}
|