summaryrefslogtreecommitdiff
path: root/accel-pppd/ctrl/pptp/pptp.c
diff options
context:
space:
mode:
Diffstat (limited to 'accel-pppd/ctrl/pptp/pptp.c')
-rw-r--r--accel-pppd/ctrl/pptp/pptp.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/accel-pppd/ctrl/pptp/pptp.c b/accel-pppd/ctrl/pptp/pptp.c
index c8731ca7..4aba5767 100644
--- a/accel-pppd/ctrl/pptp/pptp.c
+++ b/accel-pppd/ctrl/pptp/pptp.c
@@ -648,14 +648,9 @@ 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);
- continue;
+ return 0;
}
log_info2("pptp: new connection from %s\n", inet_ntoa(addr.sin_addr));