Details
- Reviewers
emaste rpaulo gnn des - Commits
- rS301551: Add blacklist support to sshd
Diff Detail
- Repository
- rS FreeBSD src repository - subversion
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
crypto/openssh/blacklist.c | ||
---|---|---|
28 ↗ | (On Diff #15084) | Indeed, what is fd 3 here? |
Updated to address emaste's comment, and log an error message when that condition arises.
I have never run into that condition in all my testing.
crypto/openssh/blacklist.c | ||
---|---|---|
1 ↗ | (On Diff #16968) | This is a verbatim import from NetBSD's patches, but doesn't have a copyright on it. I guess I should put on the NetBSD copyright, and have Christos augment the upstream diffs. |
22 ↗ | (On Diff #16968) | It's the action (zero = successful login), (one = failed login). Ideally, the code would also send successful login to zero out any bad login counts that are in progress. e.g. - two failed logins from an IP address, and then a successful login would reset the running count of failed logins to zero for that IP address. |
Added NetBSD copyrights to appropriate files.
Rename 'a' variable to 'action' to better reflect its usage.