snabb icon indicating copy to clipboard operation
snabb copied to clipboard

ping(DUP!)

Open vela-security opened this issue 7 years ago • 1 comments

local _M = {} local raw = require("apps.socket.raw") local c = config.new() function _M.run (parameters) if not (#parameters == 2) then print("Usage: example_replay ") main.exit(1) end

local interface1 = parameters[1] local interface2 = parameters[2]

config.app(c, "int1", raw.RawSocket, interface1)
config.app(c, "int2", raw.RawSocket, interface2)
config.link(c, "int1.tx -> int2.rx")
engine.configure(c)

engine.main({report = {showlinks=true}})

end return _M

vela-security avatar Jul 06 '17 03:07 vela-security

Hi, is this a bug report? :) Please provide more information including a summary of the problem, steps to reproduce, what output or behavior you expected, and what output or behavior you observed. Thanks :)

wingo avatar Jul 06 '17 07:07 wingo