This file is indexed.

/usr/include/libetpan/idle.h is in libetpan-dev 1.5-2.

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
#ifndef MAILIMAP_IDLE_H

#define MAILIMAP_IDLE_H

#ifdef __cplusplus
extern "C" {
#endif

#include "mailimap_types.h"

LIBETPAN_EXPORT
int mailimap_idle(mailimap * session);

LIBETPAN_EXPORT
int mailimap_idle_done(mailimap * session);

LIBETPAN_EXPORT
int mailimap_idle_get_fd(mailimap * session);

/* delay in seconds */
LIBETPAN_EXPORT
void mailimap_idle_set_delay(mailimap * session, long delay);

LIBETPAN_EXPORT
long mailimap_idle_get_done_delay(mailimap * session);

LIBETPAN_EXPORT
int mailimap_has_idle(mailimap * session);

#ifdef __cplusplus
}
#endif

#endif