Github user necouchman commented on a diff in the pull request:
https://github.com/apache/incubator-guacamole-client/pull/202#discussion_r149264107
--- Diff:
extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/LDAPGuacamoleProperties.java
---
@@ -174,4 +175,34 @@ private LDAPGuacamoleProperties() {}
};
+ /**
+ * Whether or not we should follow referrals
+ */
+ public static final BooleanGuacamoleProperty LDAP_FOLLOW_REFERRALS =
new BooleanGuacamoleProperty() {
+
+ @Override
+ public String getName() { return "ldap-follow-referrals"; }
+
+ };
+
+ /**
+ * Maximum number of referral hops to follow
--- End diff --
Fixed.
---