diff options
author | Robert Gustafsson <robg@student.chalmers.se> | 2017-10-03 09:14:55 +0200 |
---|---|---|
committer | Andreas Lindhé <andreas@lindhe.io> | 2017-10-09 12:14:35 +0200 |
commit | f4a7033d3629976f9980cb956e2c29315c6306c0 (patch) | |
tree | 9ef8d5193944f5b0f5e4f0f404cfcbd99cbeef43 /broccoli/modbus.bro | |
parent | 1df374c02ae16e364cfa9bfab2aa4e7f8e52005e (diff) | |
download | midbro-f4a7033d3629976f9980cb956e2c29315c6306c0.tar.gz midbro-f4a7033d3629976f9980cb956e2c29315c6306c0.tar.bz2 |
Some refactoring
Diffstat (limited to 'broccoli/modbus.bro')
-rw-r--r-- | broccoli/modbus.bro | 26 |
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); -} - |