This file is indexed.

/usr/share/bro/base/bif/logging.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/logging/logging.bif (alternative mode).

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

export {
module Log;








global Log::__create_stream: function(id: Log::ID , stream: Log::Stream ) : bool ;


global Log::__remove_stream: function(id: Log::ID ) : bool ;


global Log::__enable_stream: function(id: Log::ID ) : bool ;


global Log::__disable_stream: function(id: Log::ID ) : bool ;


global Log::__add_filter: function(id: Log::ID , filter: Log::Filter ) : bool ;


global Log::__remove_filter: function(id: Log::ID , name: string ) : bool ;


global Log::__write: function(id: Log::ID , columns: any ) : bool ;


global Log::__set_buf: function(id: Log::ID , buffered: bool ): bool ;


global Log::__flush: function(id: Log::ID ): bool ;

} # end of export section
module GLOBAL;