Skip to content
Tom Barbette edited this page May 7, 2020 · 3 revisions

InfiniteSource Element Documentation

NAME

InfiniteSource — Click element; generates packets whenever scheduled

SYNOPSIS

InfiniteSource([DATA, LIMIT, BURST, ACTIVE, keywords])

Batching: Batching natively supported
Ports: no inputs, 1 output
Processing: agnostic

DESCRIPTION

Creates packets consisting of DATA. Pushes BURST such packets out its single output every time it is scheduled (which will be often). Stops sending after LIMIT packets are generated; but if LIMIT is negative, sends packets forever. Will send packets only if ACTIVE is true. (ACTIVE is true by default.) Default DATA is at least 64 bytes long. Default LIMIT is -1 (send packets forever). Default BURST is 1.

Keyword arguments are:

  • DATA — String. Same as the DATA argument.
  • LENGTH — Integer. If set, the outgoing packet will have this length.
  • LIMIT — Integer. Same as the LIMIT argument.
  • HEADROOM — Integer. Sets the amount of headroom on generated packets. Default is the default packet headroom.
  • BURST — Integer. Same as the BURST argument.
  • ACTIVE — Boolean. Same as the ACTIVE argument.
  • STOP — Boolean. If true, then stop the driver once LIMIT packets are sent. Default is false.
  • END_CALL — A write handler called once LIMIT packets are sent. END_CALL and STOP are mutually exclusive.
  • TIMESTAMP — Boolean. If false, do not set the timestamp annotation on generated packets. Defaults to true.

To generate a particular traffic pattern, use this element and RatedSource in conjunction with Script.

EXAMPLES

  InfiniteSource(\<0800>) -> Queue -> ...

NOTES

Useful for profiling and experiments. Packets' timestamp annotations are set to the current time.

InfiniteSource listens for downstream full notification.

ELEMENT HANDLERS

  • count (read-only) — Returns the total number of packets that have been generated.
  • reset (write-only) — Resets the number of generated packets to 0. The InfiniteSource will then generate another LIMIT packets (if it is active).
  • data (read/write) — Returns or sets the DATA parameter.
  • length (read/write) — Returns or sets the LENGTH parameter.
  • limit (read/write) — Returns or sets the LIMIT parameter.
  • burst (read/write) — Returns or sets the BURST parameter.
  • active (read/write) — Makes the element active or inactive.

SEE ALSO

RatedSource, Script

Generated by click-elem2man from ../elements/standard/infinitesource.hh:9 on 2020/05/07.

Clone this wiki locally