This file is indexed.

/usr/include/paristraceroute/group.h is in libparistraceroute-dev 0.93+git20160927-1.

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
#ifndef GROUP_H
#define GROUP_H

#include <unistd.h>   // close
#include "dynarray.h" // dynarray_t
#include "probe.h"    // probe_t
/*
typedef enum {
    GROUP_ELT_TYPE_PROBE,
    GROUP_ELT_TYPE_GROUP
} group_elt_type_t;

typedef struct {
    union {
        group_t * group;
        probe_t * probe;
    }
    group_elt_type_t * type;
} group_elt_t;

// A group might receive an identifier, a skeleton (?) to quickly match probes
// inside, etc.
*/
typedef struct {
    dynarray_t * probes;                  /**< Probes related to this group of probes */
    double    (* delay_callback)(void *); /**< Return the interval of time before sending the next probe */
    int          timerfd;                 /**< This timerfd is activated when the next probe must be sent */
} group_t;

group_t * group_create(double (*callback)(void *));

void group_free(group_t * group);

int group_get_timerfd(const group_t * group);
 
probe_t * group_get_probe(const group_t * group, size_t i);

bool group_add_probe(group_t * group, probe_t * probe);

bool group_add_n_probes(group_t * group, probe_t * probes, size_t n);

bool group_set_timer(group_t * group);

#endif // GROUP_H