This file is indexed.

/usr/share/bro/base/bif/input.bif.bro is in bro-common 2.5-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
# This file was automatically generated by bifcl from /build/bro-Lr7ZuK/bro-2.5/src/input/input.bif (alternative mode).

##! Internal functions and types used by the input framework.

export {
module Input;




type Event: enum  {
	EVENT_NEW = 0,
	EVENT_CHANGED = 1,
	EVENT_REMOVED = 2,
} ;






global Input::__create_table_stream: function(description: Input::TableDescription ) : bool ;


global Input::__create_event_stream: function(description: Input::EventDescription ) : bool ;


global Input::__create_analysis_stream: function(description: Input::AnalysisDescription ) : bool ;


global Input::__remove_stream: function(id: string ) : bool ;


global Input::__force_update: function(id: string ) : bool ;






} # end of export section
module GLOBAL;