diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-04-02 21:52:21 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-04-02 21:52:21 +0200 |
commit | 6c401d89e229fe24cb35b4758f1abb3cfb1cc966 (patch) | |
tree | 35ffc937a8684de1b1634d0f41cde7824abc9a26 /src/config.l | |
parent | 77520caad8302266537e87104f6496040fc98bb4 (diff) | |
download | fastd-6c401d89e229fe24cb35b4758f1abb3cfb1cc966.tar fastd-6c401d89e229fe24cb35b4758f1abb3cfb1cc966.zip |
Allow peer-to-peer forwarding
Diffstat (limited to 'src/config.l')
-rw-r--r-- | src/config.l | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/config.l b/src/config.l index 7901faa..f2a9002 100644 --- a/src/config.l +++ b/src/config.l @@ -80,6 +80,9 @@ warn { UPDATE_LOCATION; return TOK_WARN; } info { UPDATE_LOCATION; return TOK_INFO; } verbose { UPDATE_LOCATION; return TOK_VERBOSE; } debug { UPDATE_LOCATION; return TOK_DEBUG; } +peer-to-peer { UPDATE_LOCATION; return TOK_PEER_TO_PEER; } +yes { UPDATE_LOCATION; return TOK_YES; } +no { UPDATE_LOCATION; return TOK_NO; } [0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3} { UPDATE_LOCATION; |