mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

neil_a_wilson
18.24.2007 34c4d0f375fb9aa2751569ba862bf436c1569f7f
Update all internal client connections to have unlimited size limits, time
limits, and lookthrough limits.

OpenDS Issue Number: 1246
1 files modified
6 ■■■■■ changed files
opends/src/server/org/opends/server/protocols/internal/InternalClientConnection.java 6 ●●●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/protocols/internal/InternalClientConnection.java
@@ -211,6 +211,9 @@
      this.authenticationInfo =
           new AuthenticationInfo(internalUserEntry, true);
      super.setAuthenticationInfo(authenticationInfo);
      setSizeLimit(0);
      setTimeLimit(0);
      setLookthroughLimit(0);
    }
    catch (DirectoryException de)
    {
@@ -253,6 +256,9 @@
    this.authenticationInfo = authInfo;
    super.setAuthenticationInfo(authInfo);
    setSizeLimit(0);
    setTimeLimit(0);
    setLookthroughLimit(0);
    connectionID  = nextConnectionID.getAndDecrement();
    operationList = new LinkedList<Operation>();