Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getActiveIps (0.11 sec)

  1. src/test/java/jcifs/util/AuthenticationRateLimiterTest.java

            assertEquals(1, stats.getAccountsLocked());
            assertEquals(1, stats.getIpsBlocked());
            assertTrue(stats.getActiveAccounts() > 0);
            assertTrue(stats.getActiveIps() > 0);
        }
    
        @Test
        public void testReset() throws Exception {
            // Create some state
            String username = "resettest";
            String ip = "192.168.1.12";
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/AuthenticationRateLimiter.java

            public long getIpsBlocked() {
                return ipsBlocked;
            }
    
            public int getActiveAccounts() {
                return activeAccounts;
            }
    
            public int getActiveIps() {
                return activeIps;
            }
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.1K bytes
    - Viewed (0)
Back to top