- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for addOldIPAddress (0.37 seconds)
-
src/main/java/jcifs/internal/witness/WitnessNotification.java
newIPAddresses.add(new WitnessIPAddress(address)); } /** * Adds an old IP address to the notification. * * @param address the old IP address */ public void addOldIPAddress(InetAddress address) { oldIPAddresses.add(new WitnessIPAddress(address)); } // Getters and Setters /** * Gets the event type. * * @return the event type
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) -
docs/smb3-features/06-witness-protocol-design.md
} public void addNewIPAddress(InetAddress address) { newIPAddresses.add(new WitnessIPAddress(address)); } public void addOldIPAddress(InetAddress address) { oldIPAddresses.add(new WitnessIPAddress(address)); } // Getters... public WitnessEventType getEventType() { return eventType; }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 42K bytes - Click Count (0) -
src/test/java/jcifs/internal/witness/WitnessNotificationTest.java
InetAddress ipv6 = InetAddress.getByName("2001:db8::1"); notification.addNewIPAddress(ipv4); notification.addNewIPAddress(ipv6); notification.addOldIPAddress(ipv4); List<WitnessNotification.WitnessIPAddress> newAddresses = notification.getNewIPAddresses(); List<WitnessNotification.WitnessIPAddress> oldAddresses = notification.getOldIPAddresses();
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 09:06:40 GMT 2025 - 5K bytes - Click Count (0)