:tocdepth: 3

base/frameworks/input/readers/ascii.bro
=======================================
.. bro:namespace:: InputAscii

Interface for the ascii input reader.

The defaults are set to match Bro's ASCII output.

:Namespace: InputAscii
:Source File: :download:`/scripts/base/frameworks/input/readers/ascii.bro`

Summary
~~~~~~~
Options
#######
========================================================================== ===========================================
:bro:id:`InputAscii::empty_field`: :bro:type:`string` :bro:attr:`&redef`   String to use for empty fields.
:bro:id:`InputAscii::separator`: :bro:type:`string` :bro:attr:`&redef`     Separator between fields.
:bro:id:`InputAscii::set_separator`: :bro:type:`string` :bro:attr:`&redef` Separator between set elements.
:bro:id:`InputAscii::unset_field`: :bro:type:`string` :bro:attr:`&redef`   String to use for an unset &optional field.
========================================================================== ===========================================


Detailed Interface
~~~~~~~~~~~~~~~~~~
Options
#######
.. bro:id:: InputAscii::empty_field

   :Type: :bro:type:`string`
   :Attributes: :bro:attr:`&redef`
   :Default: ``"(empty)"``

   String to use for empty fields.

.. bro:id:: InputAscii::separator

   :Type: :bro:type:`string`
   :Attributes: :bro:attr:`&redef`
   :Default: ``"^I"``

   Separator between fields.
   Please note that the separator has to be exactly one character long.

.. bro:id:: InputAscii::set_separator

   :Type: :bro:type:`string`
   :Attributes: :bro:attr:`&redef`
   :Default: ``","``

   Separator between set elements.
   Please note that the separator has to be exactly one character long.

.. bro:id:: InputAscii::unset_field

   :Type: :bro:type:`string`
   :Attributes: :bro:attr:`&redef`
   :Default: ``"-"``

   String to use for an unset &optional field.


