diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-04-16 07:39:27 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-04-16 07:39:27 +0200 |
commit | dc11e3bc08b1887204c42ac9737a4f2eefb32bde (patch) | |
tree | 4426221c6e80aa814fa54f0062fa921e785e66b3 /src/config.l | |
parent | 872e0dfa86417e89022f84ac78b2d90236cb97d4 (diff) | |
download | fastd-f6ab1cc95b93a430c0bbcf84bd309ecc0339289b.tar fastd-f6ab1cc95b93a430c0bbcf84bd309ecc0339289b.zip |
Rename peer-to-peer to forward; remove now useless peer command line optionv0.4-rc1
Diffstat (limited to 'src/config.l')
-rw-r--r-- | src/config.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.l b/src/config.l index c05f0e1..963a05b 100644 --- a/src/config.l +++ b/src/config.l @@ -86,7 +86,7 @@ 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; } +forward { UPDATE_LOCATION; return TOK_FORWARD; } yes { UPDATE_LOCATION; return TOK_YES; } no { UPDATE_LOCATION; return TOK_NO; } port { UPDATE_LOCATION; return TOK_PORT; } |