summaryrefslogtreecommitdiff
path: root/auth.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2011-05-05 14:04:50 +1000
committerDamien Miller <djm@mindrot.org>2011-05-05 14:04:50 +1000
commitb2da7d185e1227501262449b634139349a3f736f (patch)
tree709cb8d28f01e3733272964a5d070fbda7c1430c /auth.h
parent3fcdfd55a3a3a16342a4f110f2dc1ba998526e47 (diff)
- djm@cvs.openbsd.org 2011/03/10 11:34:25
[auth.h] allow GSSAPI authentication to detect when a server-side failure causes authentication failure and don't count such failures against MaxAuthTries; bz#1244 from simon AT sxw.org.uk; ok markus@ before lock
Diffstat (limited to 'auth.h')
-rw-r--r--auth.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/auth.h b/auth.h
index 77317aee6..772a8c898 100644
--- a/auth.h
+++ b/auth.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: auth.h,v 1.66 2010/05/07 11:30:29 djm Exp $ */ 1/* $OpenBSD: auth.h,v 1.67 2011/03/10 11:34:25 djm Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2000 Markus Friedl. All rights reserved. 4 * Copyright (c) 2000 Markus Friedl. All rights reserved.
@@ -53,6 +53,7 @@ struct Authctxt {
53 int valid; /* user exists and is allowed to login */ 53 int valid; /* user exists and is allowed to login */
54 int attempt; 54 int attempt;
55 int failures; 55 int failures;
56 int server_caused_failure;
56 int force_pwchange; 57 int force_pwchange;
57 char *user; /* username sent by the client */ 58 char *user; /* username sent by the client */
58 char *service; 59 char *service;