This file is indexed.

/usr/include/net-snmp/agent/agent_sysORTable.h is in libsnmp-dev 5.7.3+dfsg-1.8ubuntu3.

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

#ifdef __cplusplus
extern          "C" {
#endif

struct sysORTable;

extern void     init_agent_sysORTable(void);
extern void     shutdown_agent_sysORTable(void);

extern void     netsnmp_sysORTable_foreach(void (*)(const struct sysORTable*,
                                                    void*),
                                           void*);

extern int      register_sysORTable(oid *, size_t, const char *);
extern int      unregister_sysORTable(oid *, size_t);
extern int      register_sysORTable_sess(oid *, size_t, const char *,
                                         netsnmp_session *);
extern int      unregister_sysORTable_sess(oid *, size_t, netsnmp_session *);
extern void     unregister_sysORTable_by_session(netsnmp_session *);

#ifdef __cplusplus
}
#endif

#endif /* AGENT_SYSORTABLE_H */