mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-28 09:08:36 +02:00
8 lines
167 B
Lua
8 lines
167 B
Lua
io.stdout:setvbuf 'no'
|
|
|
|
function read_query(packet)
|
|
if packet:byte() == proxy.COM_QUERY then
|
|
print("we got a normal query: " .. packet:sub(2))
|
|
end
|
|
end
|