I found two bugs in proxy.c (download version 2.2.4):
1) line 269 accomplishes nothing. Furthermore, the CRs
aren't effectively removed. I recommend replacing
lines 266-270 with the following lines:
len = strlen(str);
str[--len] = '\0';
if (str[0] == '#' || 0>=len) continue;
(where len is an int)
2) in the case where a connection is rejected, the
proxy still connects to the destination -- defeating
the purpose of the filter. I recommend adding the
following statement after line 453:
continue;
Theron Parlin
None
None
Public
|
Date: 2004-05-17 04:17 Logged In: YES |
| Field | Old Value | Date | By |
|---|---|---|---|
| assigned_to | nobody | 2004-05-17 04:17 | sparlin |