aboutsummaryrefslogtreecommitdiff
path: root/broccoli/modbus.bro
diff options
context:
space:
mode:
authorRobert Gustafsson <robg@student.chalmers.se>2017-10-03 09:14:55 +0200
committerAndreas Lindhé <andreas@lindhe.io>2017-10-09 12:14:35 +0200
commitf4a7033d3629976f9980cb956e2c29315c6306c0 (patch)
tree9ef8d5193944f5b0f5e4f0f404cfcbd99cbeef43 /broccoli/modbus.bro
parent1df374c02ae16e364cfa9bfab2aa4e7f8e52005e (diff)
downloadmidbro-f4a7033d3629976f9980cb956e2c29315c6306c0.tar.gz
midbro-f4a7033d3629976f9980cb956e2c29315c6306c0.tar.bz2
Some refactoring
Diffstat (limited to 'broccoli/modbus.bro')
-rw-r--r--broccoli/modbus.bro26
1 files changed, 0 insertions, 26 deletions
diff --git a/broccoli/modbus.bro b/broccoli/modbus.bro
deleted file mode 100644
index a2caed9..0000000
--- a/broccoli/modbus.bro
+++ /dev/null
@@ -1,26 +0,0 @@
-@load frameworks/communication/listen
-module Pasad;
-
-redef Communication::listen_port = 47760/tcp;
-
-redef Communication::listen_ssl = F;
-
-global response: event(register: count, uid: count);
-
-redef Communication::nodes += {
- ["broevent"] = [$host = 127.0.0.1, $events = /broevent/, $connect=F, $ssl=F]
-};
-
-event modbus_read_holding_registers_request(c: connection, headers: ModbusHeaders, start_adress: count, quantity: count)
-
-{
- print fmt("Request: %d", quantity);
-}
-
-event modbus_read_holding_registers_response(c: connection, headers: ModbusHeaders, registers: ModbusRegisters)
-
-{
- print fmt("Response: %d", registers[0]);
- event response(registers[0],headers$uid);
-}
-