diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-03-09 22:54:06 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-03-09 22:54:06 +0100 |
commit | 631c13d2473e475096c77f129282671711c379bb (patch) | |
tree | 46271e037bcf2041f9e3156389a919d3f348e35a /src/config.l | |
parent | ec8109fa53082d242459893373f009e27f6732df (diff) | |
download | fastd-631c13d2473e475096c77f129282671711c379bb.tar fastd-631c13d2473e475096c77f129282671711c379bb.zip |
Add options to hide IP and MAC addresses from log output
Diffstat (limited to 'src/config.l')
-rw-r--r-- | src/config.l | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/config.l b/src/config.l index 1ff90c8..1837185 100644 --- a/src/config.l +++ b/src/config.l @@ -107,6 +107,10 @@ drop { TOKEN(TOK_DROP); } capabilities { TOKEN(TOK_CAPABILITIES); } early { TOKEN(TOK_EARLY); } limit { TOKEN(TOK_LIMIT); } +hide { TOKEN(TOK_HIDE); } +ip { TOKEN(TOK_IP); } +mac { TOKEN(TOK_MAC); } +addresses { TOKEN(TOK_ADDRESSES); } [0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3} { UPDATE_LOCATION; |