public class org.eclipse.jetty.server.ConnectionLimit extends org.eclipse.jetty.util.component.AbstractLifeCycle implements org.eclipse.jetty.io.Connection$Listener, org.eclipse.jetty.io.SelectorManager$AcceptListener
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jetty.server.ConnectionLimit
  super_class: org.eclipse.jetty.util.component.AbstractLifeCycle
{
  private static final org.eclipse.jetty.util.log.Logger LOG;
    descriptor: Lorg/eclipse/jetty/util/log/Logger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final org.eclipse.jetty.server.Server _server;
    descriptor: Lorg/eclipse/jetty/server/Server;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.List<org.eclipse.jetty.server.AbstractConnector> _connectors;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lorg/eclipse/jetty/server/AbstractConnector;>;

  private final java.util.Set<java.nio.channels.SelectableChannel> _accepting;
    descriptor: Ljava/util/Set;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Set<Ljava/nio/channels/SelectableChannel;>;

  private int _connections;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int _maxConnections;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private long _idleTimeout;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private boolean _limiting;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 63
            ldc Lorg/eclipse/jetty/server/ConnectionLimit;
            invokestatic org.eclipse.jetty.util.log.Log.getLogger:(Ljava/lang/Class;)Lorg/eclipse/jetty/util/log/Logger;
            putstatic org.eclipse.jetty.server.ConnectionLimit.LOG:Lorg/eclipse/jetty/util/log/Logger;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(int, org.eclipse.jetty.server.Server);
    descriptor: (ILorg/eclipse/jetty/server/Server;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.jetty.server.ConnectionLimit this
        start local 1 // int maxConnections
        start local 2 // org.eclipse.jetty.server.Server server
         0: .line 73
            aload 0 /* this */
            invokespecial org.eclipse.jetty.util.component.AbstractLifeCycle.<init>:()V
         1: .line 66
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.eclipse.jetty.server.ConnectionLimit._connectors:Ljava/util/List;
         2: .line 67
            aload 0 /* this */
            new java.util.HashSet
            dup
            invokespecial java.util.HashSet.<init>:()V
            putfield org.eclipse.jetty.server.ConnectionLimit._accepting:Ljava/util/Set;
         3: .line 71
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jetty.server.ConnectionLimit._limiting:Z
         4: .line 75
            aload 0 /* this */
            iload 1 /* maxConnections */
            putfield org.eclipse.jetty.server.ConnectionLimit._maxConnections:I
         5: .line 76
            aload 0 /* this */
            aload 2 /* server */
            putfield org.eclipse.jetty.server.ConnectionLimit._server:Lorg/eclipse/jetty/server/Server;
         6: .line 77
            return
        end local 2 // org.eclipse.jetty.server.Server server
        end local 1 // int maxConnections
        end local 0 // org.eclipse.jetty.server.ConnectionLimit this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    7     0            this  Lorg/eclipse/jetty/server/ConnectionLimit;
            0    7     1  maxConnections  I
            0    7     2          server  Lorg/eclipse/jetty/server/Server;
    RuntimeVisibleParameterAnnotations: 
      0:
        org.eclipse.jetty.util.annotation.Name(value = "maxConnections")
      1:
        org.eclipse.jetty.util.annotation.Name(value = "server")
    MethodParameters:
                Name  Flags
      maxConnections  
      server          

  public void <init>(int, org.eclipse.jetty.server.Connector[]);
    descriptor: (I[Lorg/eclipse/jetty/server/Connector;)V
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=6, locals=7, args_size=3
        start local 0 // org.eclipse.jetty.server.ConnectionLimit this
        start local 1 // int maxConnections
        start local 2 // org.eclipse.jetty.server.Connector[] connectors
         0: .line 81
            aload 0 /* this */
            iload 1 /* maxConnections */
            aconst_null
            invokespecial org.eclipse.jetty.server.ConnectionLimit.<init>:(ILorg/eclipse/jetty/server/Server;)V
         1: .line 82
            aload 2 /* connectors */
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 7
      StackMap locals: org.eclipse.jetty.server.ConnectionLimit int org.eclipse.jetty.server.Connector[] top int int org.eclipse.jetty.server.Connector[]
      StackMap stack:
         2: aload 6
            iload 4
            aaload
            astore 3 /* c */
        start local 3 // org.eclipse.jetty.server.Connector c
         3: .line 84
            aload 3 /* c */
            instanceof org.eclipse.jetty.server.AbstractConnector
            ifeq 5
         4: .line 85
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._connectors:Ljava/util/List;
            aload 3 /* c */
            checkcast org.eclipse.jetty.server.AbstractConnector
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
            goto 6
         5: .line 87
      StackMap locals: org.eclipse.jetty.server.ConnectionLimit int org.eclipse.jetty.server.Connector[] org.eclipse.jetty.server.Connector int int org.eclipse.jetty.server.Connector[]
      StackMap stack:
            getstatic org.eclipse.jetty.server.ConnectionLimit.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "Connector {} is not an AbstractConnection. Connections not limited"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 3 /* c */
            aastore
            invokeinterface org.eclipse.jetty.util.log.Logger.warn:(Ljava/lang/String;[Ljava/lang/Object;)V
        end local 3 // org.eclipse.jetty.server.Connector c
         6: .line 82
      StackMap locals: org.eclipse.jetty.server.ConnectionLimit int org.eclipse.jetty.server.Connector[] top int int org.eclipse.jetty.server.Connector[]
      StackMap stack:
            iinc 4 1
      StackMap locals:
      StackMap stack:
         7: iload 4
            iload 5
            if_icmplt 2
         8: .line 89
            return
        end local 2 // org.eclipse.jetty.server.Connector[] connectors
        end local 1 // int maxConnections
        end local 0 // org.eclipse.jetty.server.ConnectionLimit this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    9     0            this  Lorg/eclipse/jetty/server/ConnectionLimit;
            0    9     1  maxConnections  I
            0    9     2      connectors  [Lorg/eclipse/jetty/server/Connector;
            3    6     3               c  Lorg/eclipse/jetty/server/Connector;
    RuntimeVisibleParameterAnnotations: 
      0:
        org.eclipse.jetty.util.annotation.Name(value = "maxConnections")
      1:
        org.eclipse.jetty.util.annotation.Name(value = "connectors")
    MethodParameters:
                Name  Flags
      maxConnections  
      connectors      

  public long getIdleTimeout();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.ConnectionLimit this
         0: .line 97
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._idleTimeout:J
            lreturn
        end local 0 // org.eclipse.jetty.server.ConnectionLimit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/server/ConnectionLimit;
    RuntimeVisibleAnnotations: 
      org.eclipse.jetty.util.annotation.ManagedAttribute(value = "The endpoint idle timeout in ms to apply when the connection limit is reached")

  public void setIdleTimeout(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.jetty.server.ConnectionLimit this
        start local 1 // long idleTimeout
         0: .line 105
            aload 0 /* this */
            lload 1 /* idleTimeout */
            putfield org.eclipse.jetty.server.ConnectionLimit._idleTimeout:J
         1: .line 106
            return
        end local 1 // long idleTimeout
        end local 0 // org.eclipse.jetty.server.ConnectionLimit this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lorg/eclipse/jetty/server/ConnectionLimit;
            0    2     1  idleTimeout  J
    MethodParameters:
             Name  Flags
      idleTimeout  

  public int getMaxConnections();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.jetty.server.ConnectionLimit this
         0: .line 111
            aload 0 /* this */
            dup
            astore 1
            monitorenter
         1: .line 113
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._maxConnections:I
            aload 1
            monitorexit
         2: ireturn
         3: .line 111
      StackMap locals: org.eclipse.jetty.server.ConnectionLimit org.eclipse.jetty.server.ConnectionLimit
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.jetty.server.ConnectionLimit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/jetty/server/ConnectionLimit;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    RuntimeVisibleAnnotations: 
      org.eclipse.jetty.util.annotation.ManagedAttribute(value = "The maximum number of connections allowed")

  public void setMaxConnections(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.jetty.server.ConnectionLimit this
        start local 1 // int max
         0: .line 119
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         1: .line 121
            aload 0 /* this */
            iload 1 /* max */
            putfield org.eclipse.jetty.server.ConnectionLimit._maxConnections:I
         2: .line 119
            aload 2
            monitorexit
         3: goto 6
      StackMap locals: org.eclipse.jetty.server.ConnectionLimit int org.eclipse.jetty.server.ConnectionLimit
      StackMap stack: java.lang.Throwable
         4: aload 2
            monitorexit
         5: athrow
         6: .line 123
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int max
        end local 0 // org.eclipse.jetty.server.ConnectionLimit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/jetty/server/ConnectionLimit;
            0    7     1   max  I
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    MethodParameters:
      Name  Flags
      max   

  public int getConnections();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.jetty.server.ConnectionLimit this
         0: .line 128
            aload 0 /* this */
            dup
            astore 1
            monitorenter
         1: .line 130
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._connections:I
            aload 1
            monitorexit
         2: ireturn
         3: .line 128
      StackMap locals: org.eclipse.jetty.server.ConnectionLimit org.eclipse.jetty.server.ConnectionLimit
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // org.eclipse.jetty.server.ConnectionLimit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/jetty/server/ConnectionLimit;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    RuntimeVisibleAnnotations: 
      org.eclipse.jetty.util.annotation.ManagedAttribute(value = "The current number of connections ")

  protected void doStart();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=6, args_size=1
        start local 0 // org.eclipse.jetty.server.ConnectionLimit this
         0: .line 137
            aload 0 /* this */
            dup
            astore 1
            monitorenter
         1: .line 139
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._server:Lorg/eclipse/jetty/server/Server;
            ifnull 9
         2: .line 141
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._server:Lorg/eclipse/jetty/server/Server;
            invokevirtual org.eclipse.jetty.server.Server.getConnectors:()[Lorg/eclipse/jetty/server/Connector;
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 8
      StackMap locals: org.eclipse.jetty.server.ConnectionLimit org.eclipse.jetty.server.ConnectionLimit top int int org.eclipse.jetty.server.Connector[]
      StackMap stack:
         3: aload 5
            iload 3
            aaload
            astore 2 /* c */
        start local 2 // org.eclipse.jetty.server.Connector c
         4: .line 143
            aload 2 /* c */
            instanceof org.eclipse.jetty.server.AbstractConnector
            ifeq 6
         5: .line 144
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._connectors:Ljava/util/List;
            aload 2 /* c */
            checkcast org.eclipse.jetty.server.AbstractConnector
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
            goto 7
         6: .line 146
      StackMap locals: org.eclipse.jetty.server.ConnectionLimit org.eclipse.jetty.server.ConnectionLimit org.eclipse.jetty.server.Connector int int org.eclipse.jetty.server.Connector[]
      StackMap stack:
            getstatic org.eclipse.jetty.server.ConnectionLimit.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "Connector {} is not an AbstractConnector. Connections not limited"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 2 /* c */
            aastore
            invokeinterface org.eclipse.jetty.util.log.Logger.warn:(Ljava/lang/String;[Ljava/lang/Object;)V
        end local 2 // org.eclipse.jetty.server.Connector c
         7: .line 141
      StackMap locals: org.eclipse.jetty.server.ConnectionLimit org.eclipse.jetty.server.ConnectionLimit top int int org.eclipse.jetty.server.Connector[]
      StackMap stack:
            iinc 3 1
      StackMap locals:
      StackMap stack:
         8: iload 3
            iload 4
            if_icmplt 3
         9: .line 149
      StackMap locals: org.eclipse.jetty.server.ConnectionLimit org.eclipse.jetty.server.ConnectionLimit
      StackMap stack:
            getstatic org.eclipse.jetty.server.ConnectionLimit.LOG:Lorg/eclipse/jetty/util/log/Logger;
            invokeinterface org.eclipse.jetty.util.log.Logger.isDebugEnabled:()Z
            ifeq 11
        10: .line 150
            getstatic org.eclipse.jetty.server.ConnectionLimit.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "ConnectionLimit {} for {}"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._maxConnections:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._connectors:Ljava/util/List;
            aastore
            invokeinterface org.eclipse.jetty.util.log.Logger.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
        11: .line 151
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jetty.server.ConnectionLimit._connections:I
        12: .line 152
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jetty.server.ConnectionLimit._limiting:Z
        13: .line 153
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._connectors:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 16
      StackMap locals: org.eclipse.jetty.server.ConnectionLimit org.eclipse.jetty.server.ConnectionLimit top java.util.Iterator
      StackMap stack:
        14: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.eclipse.jetty.server.AbstractConnector
            astore 2 /* c */
        start local 2 // org.eclipse.jetty.server.AbstractConnector c
        15: .line 155
            aload 2 /* c */
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.server.AbstractConnector.addBean:(Ljava/lang/Object;)Z
            pop
        end local 2 // org.eclipse.jetty.server.AbstractConnector c
        16: .line 153
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 14
        17: .line 137
            aload 1
            monitorexit
        18: goto 21
      StackMap locals: org.eclipse.jetty.server.ConnectionLimit org.eclipse.jetty.server.ConnectionLimit
      StackMap stack: java.lang.Throwable
        19: aload 1
            monitorexit
        20: athrow
        21: .line 158
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.eclipse.jetty.server.ConnectionLimit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   22     0  this  Lorg/eclipse/jetty/server/ConnectionLimit;
            4    7     2     c  Lorg/eclipse/jetty/server/Connector;
           15   16     2     c  Lorg/eclipse/jetty/server/AbstractConnector;
      Exception table:
        from    to  target  type
           1    18      19  any
          19    20      19  any
    Exceptions:
      throws java.lang.Exception

  protected void doStop();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // org.eclipse.jetty.server.ConnectionLimit this
         0: .line 163
            aload 0 /* this */
            dup
            astore 1
            monitorenter
         1: .line 165
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._connectors:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 4
      StackMap locals: org.eclipse.jetty.server.ConnectionLimit org.eclipse.jetty.server.ConnectionLimit top java.util.Iterator
      StackMap stack:
         2: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.eclipse.jetty.server.AbstractConnector
            astore 2 /* c */
        start local 2 // org.eclipse.jetty.server.AbstractConnector c
         3: .line 167
            aload 2 /* c */
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.server.AbstractConnector.removeBean:(Ljava/lang/Object;)Z
            pop
        end local 2 // org.eclipse.jetty.server.AbstractConnector c
         4: .line 165
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 169
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jetty.server.ConnectionLimit._connections:I
         6: .line 170
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._server:Lorg/eclipse/jetty/server/Server;
            ifnull 8
         7: .line 171
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._connectors:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
         8: .line 163
      StackMap locals: org.eclipse.jetty.server.ConnectionLimit org.eclipse.jetty.server.ConnectionLimit
      StackMap stack:
            aload 1
            monitorexit
         9: goto 12
      StackMap locals:
      StackMap stack: java.lang.Throwable
        10: aload 1
            monitorexit
        11: athrow
        12: .line 173
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.eclipse.jetty.server.ConnectionLimit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lorg/eclipse/jetty/server/ConnectionLimit;
            3    4     2     c  Lorg/eclipse/jetty/server/AbstractConnector;
      Exception table:
        from    to  target  type
           1     9      10  any
          10    11      10  any
    Exceptions:
      throws java.lang.Exception

  protected void check();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.ConnectionLimit this
         0: .line 177
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._accepting:Ljava/util/Set;
            invokeinterface java.util.Set.size:()I
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._connections:I
            iadd
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._maxConnections:I
            if_icmplt 6
         1: .line 179
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._limiting:Z
            ifne 10
         2: .line 181
            aload 0 /* this */
            iconst_1
            putfield org.eclipse.jetty.server.ConnectionLimit._limiting:Z
         3: .line 182
            getstatic org.eclipse.jetty.server.ConnectionLimit.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "Connection Limit({}) reached for {}"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._maxConnections:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._connectors:Ljava/util/List;
            aastore
            invokeinterface org.eclipse.jetty.util.log.Logger.info:(Ljava/lang/String;[Ljava/lang/Object;)V
         4: .line 183
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.server.ConnectionLimit.limit:()V
         5: .line 185
            goto 10
         6: .line 188
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._limiting:Z
            ifeq 10
         7: .line 190
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jetty.server.ConnectionLimit._limiting:Z
         8: .line 191
            getstatic org.eclipse.jetty.server.ConnectionLimit.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "Connection Limit({}) cleared for {}"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._maxConnections:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._connectors:Ljava/util/List;
            aastore
            invokeinterface org.eclipse.jetty.util.log.Logger.info:(Ljava/lang/String;[Ljava/lang/Object;)V
         9: .line 192
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.server.ConnectionLimit.unlimit:()V
        10: .line 195
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.eclipse.jetty.server.ConnectionLimit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lorg/eclipse/jetty/server/ConnectionLimit;

  protected void limit();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // org.eclipse.jetty.server.ConnectionLimit this
         0: .line 199
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._connectors:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 2
            goto 8
      StackMap locals: org.eclipse.jetty.server.ConnectionLimit top java.util.Iterator
      StackMap stack:
         1: aload 2
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.eclipse.jetty.server.AbstractConnector
            astore 1 /* c */
        start local 1 // org.eclipse.jetty.server.AbstractConnector c
         2: .line 201
            aload 1 /* c */
            iconst_0
            invokevirtual org.eclipse.jetty.server.AbstractConnector.setAccepting:(Z)V
         3: .line 203
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._idleTimeout:J
            lconst_0
            lcmp
            ifle 8
         4: .line 205
            aload 1 /* c */
            invokevirtual org.eclipse.jetty.server.AbstractConnector.getConnectedEndPoints:()Ljava/util/Collection;
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 4
            goto 7
      StackMap locals: org.eclipse.jetty.server.ConnectionLimit org.eclipse.jetty.server.AbstractConnector java.util.Iterator top java.util.Iterator
      StackMap stack:
         5: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.eclipse.jetty.io.EndPoint
            astore 3 /* endPoint */
        start local 3 // org.eclipse.jetty.io.EndPoint endPoint
         6: .line 207
            aload 3 /* endPoint */
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._idleTimeout:J
            invokeinterface org.eclipse.jetty.io.EndPoint.setIdleTimeout:(J)V
        end local 3 // org.eclipse.jetty.io.EndPoint endPoint
         7: .line 205
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 5
        end local 1 // org.eclipse.jetty.server.AbstractConnector c
         8: .line 199
      StackMap locals: org.eclipse.jetty.server.ConnectionLimit top java.util.Iterator
      StackMap stack:
            aload 2
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         9: .line 211
            return
        end local 0 // org.eclipse.jetty.server.ConnectionLimit this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   10     0      this  Lorg/eclipse/jetty/server/ConnectionLimit;
            2    8     1         c  Lorg/eclipse/jetty/server/AbstractConnector;
            6    7     3  endPoint  Lorg/eclipse/jetty/io/EndPoint;

  protected void unlimit();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // org.eclipse.jetty.server.ConnectionLimit this
         0: .line 215
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._connectors:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 2
            goto 8
      StackMap locals: org.eclipse.jetty.server.ConnectionLimit top java.util.Iterator
      StackMap stack:
         1: aload 2
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.eclipse.jetty.server.AbstractConnector
            astore 1 /* c */
        start local 1 // org.eclipse.jetty.server.AbstractConnector c
         2: .line 217
            aload 1 /* c */
            iconst_1
            invokevirtual org.eclipse.jetty.server.AbstractConnector.setAccepting:(Z)V
         3: .line 219
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._idleTimeout:J
            lconst_0
            lcmp
            ifle 8
         4: .line 221
            aload 1 /* c */
            invokevirtual org.eclipse.jetty.server.AbstractConnector.getConnectedEndPoints:()Ljava/util/Collection;
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 4
            goto 7
      StackMap locals: org.eclipse.jetty.server.ConnectionLimit org.eclipse.jetty.server.AbstractConnector java.util.Iterator top java.util.Iterator
      StackMap stack:
         5: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.eclipse.jetty.io.EndPoint
            astore 3 /* endPoint */
        start local 3 // org.eclipse.jetty.io.EndPoint endPoint
         6: .line 223
            aload 3 /* endPoint */
            aload 1 /* c */
            invokevirtual org.eclipse.jetty.server.AbstractConnector.getIdleTimeout:()J
            invokeinterface org.eclipse.jetty.io.EndPoint.setIdleTimeout:(J)V
        end local 3 // org.eclipse.jetty.io.EndPoint endPoint
         7: .line 221
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 5
        end local 1 // org.eclipse.jetty.server.AbstractConnector c
         8: .line 215
      StackMap locals: org.eclipse.jetty.server.ConnectionLimit top java.util.Iterator
      StackMap stack:
            aload 2
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         9: .line 227
            return
        end local 0 // org.eclipse.jetty.server.ConnectionLimit this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   10     0      this  Lorg/eclipse/jetty/server/ConnectionLimit;
            2    8     1         c  Lorg/eclipse/jetty/server/AbstractConnector;
            6    7     3  endPoint  Lorg/eclipse/jetty/io/EndPoint;

  public void onAccepting(java.nio.channels.SelectableChannel);
    descriptor: (Ljava/nio/channels/SelectableChannel;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // org.eclipse.jetty.server.ConnectionLimit this
        start local 1 // java.nio.channels.SelectableChannel channel
         0: .line 232
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         1: .line 234
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._accepting:Ljava/util/Set;
            aload 1 /* channel */
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
         2: .line 235
            getstatic org.eclipse.jetty.server.ConnectionLimit.LOG:Lorg/eclipse/jetty/util/log/Logger;
            invokeinterface org.eclipse.jetty.util.log.Logger.isDebugEnabled:()Z
            ifeq 4
         3: .line 236
            getstatic org.eclipse.jetty.server.ConnectionLimit.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "onAccepting ({}+{}) < {} {}"
            iconst_4
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._accepting:Ljava/util/Set;
            invokeinterface java.util.Set.size:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._connections:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_2
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._maxConnections:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_3
            aload 1 /* channel */
            aastore
            invokeinterface org.eclipse.jetty.util.log.Logger.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
         4: .line 237
      StackMap locals: org.eclipse.jetty.server.ConnectionLimit
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.server.ConnectionLimit.check:()V
         5: .line 232
            aload 2
            monitorexit
         6: goto 9
      StackMap locals:
      StackMap stack: java.lang.Throwable
         7: aload 2
            monitorexit
         8: athrow
         9: .line 239
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.nio.channels.SelectableChannel channel
        end local 0 // org.eclipse.jetty.server.ConnectionLimit this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lorg/eclipse/jetty/server/ConnectionLimit;
            0   10     1  channel  Ljava/nio/channels/SelectableChannel;
      Exception table:
        from    to  target  type
           1     6       7  any
           7     8       7  any
    MethodParameters:
         Name  Flags
      channel  

  public void onAcceptFailed(java.nio.channels.SelectableChannel, java.lang.Throwable);
    descriptor: (Ljava/nio/channels/SelectableChannel;Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // org.eclipse.jetty.server.ConnectionLimit this
        start local 1 // java.nio.channels.SelectableChannel channel
        start local 2 // java.lang.Throwable cause
         0: .line 244
            aload 0 /* this */
            dup
            astore 3
            monitorenter
         1: .line 246
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._accepting:Ljava/util/Set;
            aload 1 /* channel */
            invokeinterface java.util.Set.remove:(Ljava/lang/Object;)Z
            pop
         2: .line 247
            getstatic org.eclipse.jetty.server.ConnectionLimit.LOG:Lorg/eclipse/jetty/util/log/Logger;
            invokeinterface org.eclipse.jetty.util.log.Logger.isDebugEnabled:()Z
            ifeq 4
         3: .line 248
            getstatic org.eclipse.jetty.server.ConnectionLimit.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "onAcceptFailed ({}+{}) < {} {} {}"
            iconst_5
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._accepting:Ljava/util/Set;
            invokeinterface java.util.Set.size:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._connections:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_2
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._maxConnections:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_3
            aload 1 /* channel */
            aastore
            dup
            iconst_4
            aload 2 /* cause */
            aastore
            invokeinterface org.eclipse.jetty.util.log.Logger.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
         4: .line 249
      StackMap locals: org.eclipse.jetty.server.ConnectionLimit
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.server.ConnectionLimit.check:()V
         5: .line 244
            aload 3
            monitorexit
         6: goto 9
      StackMap locals:
      StackMap stack: java.lang.Throwable
         7: aload 3
            monitorexit
         8: athrow
         9: .line 251
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.Throwable cause
        end local 1 // java.nio.channels.SelectableChannel channel
        end local 0 // org.eclipse.jetty.server.ConnectionLimit this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lorg/eclipse/jetty/server/ConnectionLimit;
            0   10     1  channel  Ljava/nio/channels/SelectableChannel;
            0   10     2    cause  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           1     6       7  any
           7     8       7  any
    MethodParameters:
         Name  Flags
      channel  
      cause    

  public void onAccepted(java.nio.channels.SelectableChannel);
    descriptor: (Ljava/nio/channels/SelectableChannel;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.server.ConnectionLimit this
        start local 1 // java.nio.channels.SelectableChannel channel
         0: .line 256
            return
        end local 1 // java.nio.channels.SelectableChannel channel
        end local 0 // org.eclipse.jetty.server.ConnectionLimit this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/eclipse/jetty/server/ConnectionLimit;
            0    1     1  channel  Ljava/nio/channels/SelectableChannel;
    MethodParameters:
         Name  Flags
      channel  

  public void onOpened(org.eclipse.jetty.io.Connection);
    descriptor: (Lorg/eclipse/jetty/io/Connection;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // org.eclipse.jetty.server.ConnectionLimit this
        start local 1 // org.eclipse.jetty.io.Connection connection
         0: .line 261
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         1: .line 263
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._accepting:Ljava/util/Set;
            aload 1 /* connection */
            invokeinterface org.eclipse.jetty.io.Connection.getEndPoint:()Lorg/eclipse/jetty/io/EndPoint;
            invokeinterface org.eclipse.jetty.io.EndPoint.getTransport:()Ljava/lang/Object;
            invokeinterface java.util.Set.remove:(Ljava/lang/Object;)Z
            pop
         2: .line 264
            aload 0 /* this */
            dup
            getfield org.eclipse.jetty.server.ConnectionLimit._connections:I
            iconst_1
            iadd
            putfield org.eclipse.jetty.server.ConnectionLimit._connections:I
         3: .line 265
            getstatic org.eclipse.jetty.server.ConnectionLimit.LOG:Lorg/eclipse/jetty/util/log/Logger;
            invokeinterface org.eclipse.jetty.util.log.Logger.isDebugEnabled:()Z
            ifeq 5
         4: .line 266
            getstatic org.eclipse.jetty.server.ConnectionLimit.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "onOpened ({}+{}) < {} {}"
            iconst_4
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._accepting:Ljava/util/Set;
            invokeinterface java.util.Set.size:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._connections:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_2
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._maxConnections:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_3
            aload 1 /* connection */
            aastore
            invokeinterface org.eclipse.jetty.util.log.Logger.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
         5: .line 267
      StackMap locals: org.eclipse.jetty.server.ConnectionLimit
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.server.ConnectionLimit.check:()V
         6: .line 261
            aload 2
            monitorexit
         7: goto 10
      StackMap locals:
      StackMap stack: java.lang.Throwable
         8: aload 2
            monitorexit
         9: athrow
        10: .line 269
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.eclipse.jetty.io.Connection connection
        end local 0 // org.eclipse.jetty.server.ConnectionLimit this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   11     0        this  Lorg/eclipse/jetty/server/ConnectionLimit;
            0   11     1  connection  Lorg/eclipse/jetty/io/Connection;
      Exception table:
        from    to  target  type
           1     7       8  any
           8     9       8  any
    MethodParameters:
            Name  Flags
      connection  

  public void onClosed(org.eclipse.jetty.io.Connection);
    descriptor: (Lorg/eclipse/jetty/io/Connection;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // org.eclipse.jetty.server.ConnectionLimit this
        start local 1 // org.eclipse.jetty.io.Connection connection
         0: .line 274
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         1: .line 276
            aload 0 /* this */
            dup
            getfield org.eclipse.jetty.server.ConnectionLimit._connections:I
            iconst_1
            isub
            putfield org.eclipse.jetty.server.ConnectionLimit._connections:I
         2: .line 277
            getstatic org.eclipse.jetty.server.ConnectionLimit.LOG:Lorg/eclipse/jetty/util/log/Logger;
            invokeinterface org.eclipse.jetty.util.log.Logger.isDebugEnabled:()Z
            ifeq 4
         3: .line 278
            getstatic org.eclipse.jetty.server.ConnectionLimit.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "onClosed ({}+{}) < {} {}"
            iconst_4
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._accepting:Ljava/util/Set;
            invokeinterface java.util.Set.size:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._connections:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_2
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ConnectionLimit._maxConnections:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_3
            aload 1 /* connection */
            aastore
            invokeinterface org.eclipse.jetty.util.log.Logger.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
         4: .line 279
      StackMap locals: org.eclipse.jetty.server.ConnectionLimit
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.server.ConnectionLimit.check:()V
         5: .line 274
            aload 2
            monitorexit
         6: goto 9
      StackMap locals:
      StackMap stack: java.lang.Throwable
         7: aload 2
            monitorexit
         8: athrow
         9: .line 281
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.eclipse.jetty.io.Connection connection
        end local 0 // org.eclipse.jetty.server.ConnectionLimit this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   10     0        this  Lorg/eclipse/jetty/server/ConnectionLimit;
            0   10     1  connection  Lorg/eclipse/jetty/io/Connection;
      Exception table:
        from    to  target  type
           1     6       7  any
           7     8       7  any
    MethodParameters:
            Name  Flags
      connection  
}
SourceFile: "ConnectionLimit.java"
InnerClasses:
  public abstract Listener = org.eclipse.jetty.io.Connection$Listener of org.eclipse.jetty.io.Connection
  public abstract AcceptListener = org.eclipse.jetty.io.SelectorManager$AcceptListener of org.eclipse.jetty.io.SelectorManager
    RuntimeVisibleAnnotations: 
      org.eclipse.jetty.util.annotation.ManagedObject()