1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-09-18 01:33:00 +03:00

Merge PR #1146: Cedar/Server.c: load UDP ports from configuration file and apply them

This commit is contained in:
Davide Beatrici 2020-06-10 10:00:10 +02:00 committed by GitHub
commit 485a5922eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;