diff options
| author | Dmitry Kozlov <xeb@mail.ru> | 2017-04-18 16:07:35 +0300 |
|---|---|---|
| committer | Dmitry Kozlov <xeb@mail.ru> | 2017-04-18 16:12:13 +0300 |
| commit | 9ea88bac7d5bf8fc5cf2d5f7d0a734ec7a9e6df6 (patch) | |
| tree | 252abd7360053dcfb57234ff64785e354a85e620 /accel-pppd/session.c | |
| parent | 29e80de7214199500b56e4ac3a667a40df1a7f20 (diff) | |
| download | accel-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/session.c')
| -rw-r--r-- | accel-pppd/session.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/accel-pppd/session.c b/accel-pppd/session.c index 730a57a..ca133ee 100644 --- a/accel-pppd/session.c +++ b/accel-pppd/session.c @@ -34,6 +34,7 @@ static int conf_single_session = -1; static int conf_sid_source; static int conf_seq_save_timeout = 10; static const char *conf_seq_file; +int conf_max_sessions; pthread_rwlock_t __export ses_lock = PTHREAD_RWLOCK_INITIALIZER; __export LIST_HEAD(ses_list); @@ -76,6 +77,10 @@ void __export ap_session_set_ifindex(struct ap_session *ses) ses->acct_tx_packets_i = stats.tx_packets; ses->acct_rx_bytes_i = stats.rx_bytes; ses->acct_tx_bytes_i = stats.tx_bytes; + ses->acct_rx_bytes = 0; + ses->acct_tx_bytes = 0; + ses->acct_input_gigawords = 0; + ses->acct_output_gigawords = 0; } } @@ -511,6 +516,12 @@ static void load_config(void) conf_seq_file = conf_get_opt("common", "seq-file"); if (!conf_seq_file) conf_seq_file = "/var/lib/accel-ppp/seq"; + + opt = conf_get_opt("common", "max-sessions"); + if (opt) + conf_max_sessions = atoi(opt); + else + conf_max_sessions = 0; } static void init(void) |
