- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for getOldIPAddresses (0.07 seconds)
-
src/main/java/jcifs/internal/witness/WitnessNotification.java
return newIPAddresses; } /** * Gets the list of old IP addresses. * * @return the old IP addresses */ public List<WitnessIPAddress> getOldIPAddresses() { return oldIPAddresses; } /** * Gets the notification flags. * * @return the flags */ public int getFlags() { return flags; }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 24 00:12:28 GMT 2025 - 6.4K bytes - Click Count (0) -
src/test/java/jcifs/internal/witness/WitnessNotificationTest.java
assertTrue(notification.getTimestamp() <= System.currentTimeMillis()); assertTrue(notification.getNewIPAddresses().isEmpty()); assertTrue(notification.getOldIPAddresses().isEmpty()); assertEquals(WitnessNotification.WITNESS_RESOURCE_STATE_UNKNOWN, notification.getFlags()); } @Test void testAddIPAddresses() throws Exception {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 09:06:40 GMT 2025 - 5K bytes - Click Count (0) -
docs/smb3-features/06-witness-protocol-design.md
public long getTimestamp() { return timestamp; } public List<WitnessIPAddress> getNewIPAddresses() { return newIPAddresses; } public List<WitnessIPAddress> getOldIPAddresses() { return oldIPAddresses; } } ``` ### 4.3 Witness Client ```java package jcifs.internal.witness; import jcifs.dcerpc.*; import jcifs.dcerpc.rpc.*; import java.util.concurrent.*;
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 42K bytes - Click Count (0)