summaryrefslogtreecommitdiff
path: root/accel-pppd/ctrl/pptp/pptp.c
diff options
context:
space:
mode:
authorDmitry Kozlov <xeb@mail.ru>2017-04-18 16:07:35 +0300
committerDmitry Kozlov <xeb@mail.ru>2017-04-18 16:12:13 +0300
commit9ea88bac7d5bf8fc5cf2d5f7d0a734ec7a9e6df6 (patch)
tree252abd7360053dcfb57234ff64785e354a85e620 /accel-pppd/ctrl/pptp/pptp.c
parent29e80de7214199500b56e4ac3a667a40df1a7f20 (diff)
downloadaccel-ppp-9ea88bac7d5bf8fc5cf2d5f7d0a734ec7a9e6df6.tar.gz
accel-ppp-9ea88bac7d5bf8fc5cf2d5f7d0a734ec7a9e6df6.zip
implemented session count limiting
new config option: [common] max-sessions=N If set then accel-pppd stops reply to new connection requests if total number of sessions (active and starting) is reached specified limit.
Diffstat (limited to 'accel-pppd/ctrl/pptp/pptp.c')
-rw-r--r--accel-pppd/ctrl/pptp/pptp.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/accel-pppd/ctrl/pptp/pptp.c b/accel-pppd/ctrl/pptp/pptp.c
index 4aba5767..c8731ca7 100644
--- a/accel-pppd/ctrl/pptp/pptp.c
+++ b/accel-pppd/ctrl/pptp/pptp.c
@@ -648,9 +648,14 @@ static int pptp_connect(struct triton_md_handler_t *h)
continue;
}
+ if (conf_max_sessions && ap_session_stat.active + ap_session_stat.starting > conf_max_sessions) {
+ close(sock);
+ continue;
+ }
+
if (triton_module_loaded("connlimit") && connlimit_check(cl_key_from_ipv4(addr.sin_addr.s_addr))) {
close(sock);
- return 0;
+ continue;
}
log_info2("pptp: new connection from %s\n", inet_ntoa(addr.sin_addr));