forked from TelefonicaTC2Tech/icsnpp-bsap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
events.bif
91 lines (80 loc) · 3.29 KB
/
events.bif
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
## events.bif
##
## Binpac BSAP Protocol Analyzer - Defines events the analyzer will generate
##
## Author: Devin Vollmer
## Contact: [email protected]
##
## Copyright (c) 2020 Battelle Energy Alliance, LLC. All rights reserved.
event bsap_ip_header%(c: connection,
is_orig: bool,
id: count,
Num_Messages: count,
Message_Func: count%);
event bsap_ip_request_header%(c: connection,
response_seq: count,
message_seq: count,
data_length: count,
header_size: count,
sequence: count,
app_func_code: count%);
event bsap_ip_rdb_request%(c: connection,
response_seq: count,
message_seq: count,
node_status: count,
func_code: count,
data_length: count,
var_cnt: count,
variables: string_vec,
variable_value: string_vec,
data: string%);
event bsap_ip_rdb_response%(c: connection,
message_seq: count,
response_seq: count,
data_length: count,
header_size: count,
sequence: count,
func_code: count,
resp_status: count,
variables: string_vec,
variable_value: string_vec,
variable_cnt: count,
data: string%);
event bsap_ip_unknown%(c: connection,
data: string%);
event bsap_serial_rdb_request%(c: connection,
func_code: count,
variable_cnt: count,
variables: string_vec,
variable_value: string_vec,
data: string%);
event bsap_serial_rdb_response%(c: connection,
func_code: count,
variable_cnt: count,
variables: string_vec,
variable_value: string_vec,
data: string%);
event bsap_serial_local_header%(c: connection,
SER: count,
DFUN: count,
SEQ: count,
SFUN: count,
NSB: count%);
event bsap_serial_global_header%(c: connection,
SER: count,
DADD: count,
SADD: count,
CTL: count,
DFUN: count,
SEQ: count,
SFUN: count,
NSB: count%);
event bsap_serial_rdb_extension%(c: connection,
DFUN: count,
SEQ: count,
SFUN: count,
NSB: count,
XFUN: count,
data: string%);
event bsap_serial_unknown%(c: connection,
data: string%);