Script-driven Transmission
IO Ninja allows you to write a script which will transmit packets according to the user-defined logic.
Example:
void main() {
for (size_t i = 0;; i++) {
char const* p = $"packet $i\n"; // perl-like interpolating literals
transmit(p); // omitting length means, use strlen ()
sys.sleep(1000); // wait one second and repeat
}
}