This file is indexed.

/usr/include/freeipmi/util/ipmi-timestamp-util.h is in libfreeipmi-dev 1.4.11-1.1ubuntu4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
/*
 * Copyright (C) 2003-2014 FreeIPMI Core Team
 * 
 * This program 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.
 *
 * This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
 * 
 */

#ifndef IPMI_TIMESTAMP_UTIL_H
#define IPMI_TIMESTAMP_UTIL_H

#ifdef __cplusplus
extern "C" {
#endif

#include <stdint.h>

#define IPMI_TIMESTAMP_FLAG_DEFAULT          0x00
/* Special string abbreviations
 * "Unspecified" will be abbreviated "Unspec."
 * "Post-Init X s" will be abbreviated to just "PostInit"
 */
#define IPMI_TIMESTAMP_FLAG_ABBREVIATE       0x01
/* Assume timestamp is UTC instead of localtime, convert to localtime.
 */
#define IPMI_TIMESTAMP_FLAG_UTC_TO_LOCALTIME 0x02
/* Assume timestamp is localtime, convert to UTC
 */
#define IPMI_TIMESTAMP_FLAG_LOCALTIME_TO_UTC 0x04

#define IPMI_UTC_OFFSET_SECONDS_MIN -86400
#define IPMI_UTC_OFFSET_SECONDS_MAX  86400

#define IPMI_UTC_OFFSET_VALID(__val) \
  (((__val) >= IPMI_UTC_OFFSET_SECONDS_MIN \
    && (__val) <= IPMI_UTC_OFFSET_SECONDS_MAX) ? 1 : 0)

/* Handles special case timestamps in IPMI and timestamp
 * conversations.  Special case timestamps most notably unspecified
 * timestamps and timestamps in the range of initialization of the
 * BMC.  In those respective cases, an appropriate string will written
 * into the buffer instead of the actual time/date.
 */

/* format uses format from strftime(), pass NULL for default one */
int ipmi_timestamp_string (uint32_t timestamp,
			   int utc_offset,
			   unsigned int flags,
			   const char *format,
			   char *buf,
			   unsigned int buflen);

#ifdef __cplusplus
}
#endif

#endif /* IPMI_TIMESTAMP_UTIL_H */