Fixed incorrect Boolean, now aligns with the description of “deactivated by default”.

Resolves #108 by @dontcrash

Signed-off-by: simonmicro <simon@simonmicro.de>
This commit is contained in:
simonmicro 2024-05-19 12:58:38 +02:00
parent e8ad973322
commit da7feffecd
No known key found for this signature in database
GPG key ID: 033A4D4CE4E063D6

View file

@ -212,7 +212,7 @@ Use \"STDOUTOFF\" to disable stdout messages. Use \"FILEOFF\" if you not want to
'reuse' : {'help' : 'Do not allows binding / listening to the same address and port. Reusing port is activated by default.', 'def' : True, 'reuse' : {'help' : 'Do not allows binding / listening to the same address and port. Reusing port is activated by default.', 'def' : True,
'des': "reuse"}, 'des': "reuse"},
'dual' : {'help' : 'Allows listening to an IPv6 address also accepting connections via IPv4. Deactivated by default.', 'dual' : {'help' : 'Allows listening to an IPv6 address also accepting connections via IPv4. Deactivated by default.',
'def' : True, 'des': "dual"} 'def' : False, 'des': "dual"}
} }
def server_options(): def server_options():