Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Fabian Mauchle
radsecproxy
Commits
9196c246
Commit
9196c246
authored
Aug 26, 2013
by
Linus Nordberg
Browse files
Time out on TLS clients not closing the connection properly.
Patch by Fabian Mauchle.
parent
2d867ce2
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
9196c246
...
...
@@ -12,6 +12,8 @@
crash when using dynamic discovery. Patch by Fabian Mauchle.
- Closing and freeing TLS clients properly. Patch by Fabian
Mauchle.
- Timing out on TLS clients not closing the connection properly.
Patch by Fabian Mauchle.
2012-10-25 1.6.2
Bug fixes (security):
...
...
tls.c
View file @
9196c246
...
...
@@ -355,7 +355,7 @@ void tlsserverrd(struct client *client) {
}
for
(;;)
{
buf
=
radtlsget
(
client
->
ssl
,
0
);
buf
=
radtlsget
(
client
->
ssl
,
IDLE_TIMEOUT
*
3
);
if
(
!
buf
)
{
debug
(
DBG_ERR
,
"tlsserverrd: connection from %s lost"
,
addr2string
(
client
->
addr
));
break
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment