mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-28 15:09:33 +00:00
16 lines
395 B
Lua
16 lines
395 B
Lua
--
|
|
-- (C) 2013-24 - ntop.org
|
|
--
|
|
|
|
dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
require "lua_utils"
|
|
|
|
sendHTTPContentTypeHeader('application/octet-stream')
|
|
|
|
str = "0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"
|
|
tot = (1024 * 1024) / string.len(str)
|
|
|
|
for i=1,tot do
|
|
print(str)
|
|
end
|