Answers:
正如Jim所说,OpenVPN网站上的示例使用#进行注释和;注释掉设置。没有功能上的差异,但是此约定使在视觉上识别被注释掉的设置更加容易。
来自https://openvpn.net/index.php/open-source/documentation/howto.html#examples
#################################################
# Sample OpenVPN 2.0 config file for #
<snip>
# Comments are preceded with '#' or ';' #
#################################################
# Which local IP address should OpenVPN
# listen on? (optional)
;local a.b.c.d
# Which TCP/UDP port should OpenVPN listen on?
# If you want to run multiple OpenVPN instances
# on the same machine, use a different port
# number for each one. You will need to
# open up this port on your firewall.
port 1194
# TCP or UDP server?
;proto tcp
proto udp
;
之前从未见过一个特定的注释为残疾人代码(而不是文本)的风格-