mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-22 09:29:52 +03:00
Merge PR #1146: Cedar/Server.c: load UDP ports from configuration file and apply them
This commit is contained in:
commit
485a5922eb
@ -5676,6 +5676,23 @@ void SiLoadServerCfg(SERVER *s, FOLDER *f)
|
||||
{
|
||||
OPENVPN_SSTP_CONFIG config;
|
||||
FOLDER *syslog_f;
|
||||
{
|
||||
UINT i;
|
||||
LIST *ports;
|
||||
|
||||
// Load and set UDP ports
|
||||
CfgGetStr(f, "PortsUDP", tmp, sizeof(tmp));
|
||||
NormalizeIntListStr(tmp, sizeof(tmp), tmp, true, ", ");
|
||||
|
||||
ports = StrToIntList(tmp, true);
|
||||
for (i = 0; i < LIST_NUM(ports); ++i)
|
||||
{
|
||||
AddInt(s->PortsUDP, *(UINT *)LIST_DATA(ports, i));
|
||||
}
|
||||
ReleaseIntList(ports);
|
||||
|
||||
ProtoSetUdpPorts(s->Proto, ports);
|
||||
}
|
||||
{
|
||||
RPC_KEEP k;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user