Skip to content

Commit

Permalink
Regenerate ouch protocols
Browse files Browse the repository at this point in the history
  • Loading branch information
Open-Markets-Initiative committed Jul 5, 2023
1 parent 3bb7074 commit 22974c3
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Asx/Asx.Securities.SR8.Ouch.v2.0.Script.Dissector.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2691,7 +2691,7 @@ local soup_bin_tcp_packet_bytes_remaining = function(buffer, index, available)
end

-- Parse runtime size
local current = buffer(index, 2):uint()
local current = buffer(index, 2):uint() + 2

-- Check if enough bytes remain
if remaining < current then
Expand Down
2 changes: 1 addition & 1 deletion Jnx/Jnx.Equities.Pts.Ouch.v1.11.Script.Dissector.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2565,7 +2565,7 @@ local soup_bin_tcp_packet_bytes_remaining = function(buffer, index, available)
end

-- Parse runtime size
local current = buffer(index, 2):uint()
local current = buffer(index, 2):uint() + 2

-- Check if enough bytes remain
if remaining < current then
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3132,7 +3132,7 @@ local soup_bin_tcp_packet_bytes_remaining = function(buffer, index, available)
end

-- Parse runtime size
local current = buffer(index, 2):uint()
local current = buffer(index, 2):uint() + 2

-- Check if enough bytes remain
if remaining < current then
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -867,7 +867,7 @@ local soup_bin_tcp_packet_bytes_remaining = function(buffer, index, available)
end

-- Parse runtime size
local current = buffer(index, 2):uint()
local current = buffer(index, 2):uint() + 2

-- Check if enough bytes remain
if remaining < current then
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3365,7 +3365,7 @@ local soup_bin_tcp_packet_bytes_remaining = function(buffer, index, available)
end

-- Parse runtime size
local current = buffer(index, 2):uint()
local current = buffer(index, 2):uint() + 2

-- Check if enough bytes remain
if remaining < current then
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4806,7 +4806,7 @@ local soup_bin_tcp_packet_bytes_remaining = function(buffer, index, available)
end

-- Parse runtime size
local current = buffer(index, 2):uint()
local current = buffer(index, 2):uint() + 2

-- Check if enough bytes remain
if remaining < current then
Expand Down
2 changes: 1 addition & 1 deletion Nasdaq/Nasdaq.Psx.Orders.Ouch.v4.2.Script.Dissector.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3062,7 +3062,7 @@ local soup_bin_tcp_packet_bytes_remaining = function(buffer, index, available)
end

-- Parse runtime size
local current = buffer(index, 2):uint()
local current = buffer(index, 2):uint() + 2

-- Check if enough bytes remain
if remaining < current then
Expand Down

0 comments on commit 22974c3

Please sign in to comment.