Skip to content
Tom Barbette edited this page Aug 6, 2018 · 1 revision

click-align

adds required Align elements to a Click configuration

Synopsis

click-align [options] [param=value ...] [router-file]

Description

The click-align tool makes Click router configurations usable on machines that don’t support unaligned accesses. It reads a router configuration file in the click language, adds any required Align elements, and writes the new configuration to the standard output.

Several Click elements, such as CheckIPHeader and ToLinux(n), have alignment requirements. The CheckIPHeader element, for example, expects that the packet begins with an IP header, and that this IP header is four-byte-aligned. Normally, Click does not guarantee this: elements cannot know how input packets will be aligned. The click-align tool first analyzes the router configuration, then inserts Align elements as required to ensure that packets will be properly aligned. It also adds an AlignmentInfo element so elements can figure out what packet alignment they can expect.

The list of alignment requirements is currently built in to the click-align tool and cannot be changed except by recompilation.

Options

If any filename argument is a single dash "-", click-align will use the standard input or output instead, as appropriate.

  • -f file

  • --file file

    Read the router configuration to transform from file. The default is the standard input.

  • -e expr

  • --expr expr

    Use expr, a string in the Click language, as the router configuration to transform.

  • -o file

  • --output file

    Write the output router configuration to file. The default is the standard output.

  • --help

    Print usage information and exit.

  • --version

    Print the version number and some quickie warranty information and exit.

See Also

click, Align, AlignmentInfo

Author

Eddie Kohler, kohler@seas.harvard.edu
https://github.com/tbarbette/fastclick

Clone this wiki locally