diff options
| author | Kozlov Dmitry <dima@server> | 2010-11-16 17:19:33 +0300 |
|---|---|---|
| committer | Kozlov Dmitry <dima@server> | 2010-11-16 17:19:33 +0300 |
| commit | e95fc28b08669e329916e1cf1eb52fa462ad655a (patch) | |
| tree | b584a8719fc5950ae9f683c6ce865ee074e3e450 /accel-pptpd/cli/tcp.c | |
| parent | 50881d86b036e3b658c45e56b57b12a60e1562ef (diff) | |
| download | accel-ppp-e95fc28b08669e329916e1cf1eb52fa462ad655a.tar.gz accel-ppp-e95fc28b08669e329916e1cf1eb52fa462ad655a.zip | |
log-tcp: fixed incorrect queue overflow handling
ppp: fixed memory leak when ipcp raises error at ConfReq
Diffstat (limited to 'accel-pptpd/cli/tcp.c')
| -rw-r--r-- | accel-pptpd/cli/tcp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/accel-pptpd/cli/tcp.c b/accel-pptpd/cli/tcp.c index 582c175..f6d2011 100644 --- a/accel-pptpd/cli/tcp.c +++ b/accel-pptpd/cli/tcp.c @@ -332,6 +332,7 @@ static void start_server(const char *host, int port) addr.sin_addr.s_addr = inet_addr(host); triton_context_register(&serv_ctx, NULL); + triton_context_set_priority(&serv_ctx, 1); triton_md_register_handler(&serv_ctx, &serv_hnd); triton_md_enable_handler(&serv_hnd, MD_MODE_READ); triton_context_wakeup(&serv_ctx); |
