2008-05-17 02:39:26 +02:00
|
|
|
Fall back to TCP on kdc-unresolvable/unreachable errors. We still have
|
|
|
|
to wait for UDP to fail, so this might not be ideal. RT #5868.
|
|
|
|
|
|
|
|
Index: src/lib/krb5/os/changepw.c
|
|
|
|
===================================================================
|
2009-07-08 19:41:43 +02:00
|
|
|
--- src/lib/krb5/os/changepw.c.orig
|
|
|
|
+++ src/lib/krb5/os/changepw.c
|
2011-08-21 11:43:02 +02:00
|
|
|
@@ -282,10 +282,22 @@ change_set_password(krb5_context context
|
2010-03-23 12:40:55 +01:00
|
|
|
NULL
|
|
|
|
))) {
|
|
|
|
|
|
|
|
- /*
|
|
|
|
- * Here we may want to switch to TCP on some errors.
|
|
|
|
- * right?
|
|
|
|
- */
|
|
|
|
+ /* if we're not using a stream socket, and it's an error which
|
|
|
|
+ * might reasonably be specific to a datagram "connection", try
|
|
|
|
+ * again with a stream socket */
|
|
|
|
+ if (!useTcp) {
|
|
|
|
+ switch (code) {
|
|
|
|
+ case KRB5_KDC_UNREACH:
|
|
|
|
+ case KRB5_REALM_CANT_RESOLVE:
|
|
|
|
+ case KRB5KRB_ERR_RESPONSE_TOO_BIG:
|
|
|
|
+ /* should we do this for more result codes than these? */
|
|
|
|
+ krb5int_free_addrlist (&al);
|
|
|
|
+ useTcp = 1;
|
|
|
|
+ continue;
|
|
|
|
+ default:
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
break;
|
|
|
|
}
|
2008-05-17 02:39:26 +02:00
|
|
|
|