- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for CLIENT_MOVE (0.06 seconds)
-
docs/smb3-features/06-witness-protocol-design.md
@Test public void testWitnessNotification() { WitnessNotification notification = new WitnessNotification( WitnessEventType.CLIENT_MOVE, "TestResource"); notification.addNewIPAddress(InetAddress.getByName("192.168.1.101")); assertEquals(WitnessEventType.CLIENT_MOVE, notification.getEventType()); assertEquals("TestResource", notification.getResourceName());
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/WitnessIntegrationTest.java
String regId = mockService.registerWitness("TestResource", "192.168.1.100", 1); // Send notification affecting the registration mockService.sendNotification(WitnessEventType.CLIENT_MOVE, "TestResource"); // Clean up mockService.unregisterWitness(regId); } @Test void testMockServiceHeartbeat() {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 09:06:40 GMT 2025 - 9.8K bytes - Click Count (0) -
src/test/java/jcifs/internal/witness/WitnessClientTest.java
// Create and process a notification WitnessNotification notification = new WitnessNotification(WitnessEventType.CLIENT_MOVE, "\\\\server\\share"); notification.addNewIPAddress(InetAddress.getByName("192.168.1.101")); client.processNotification(notification); // Verify notification was deliveredCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 09:06:40 GMT 2025 - 9.8K bytes - Click Count (0) -
src/main/java/jcifs/internal/witness/WitnessClient.java
return WitnessEventType.RESOURCE_CHANGE; case WitnessAsyncNotifyMessage.WitnessNotificationMessage.WITNESS_CLIENT_MOVE: return WitnessEventType.CLIENT_MOVE; case WitnessAsyncNotifyMessage.WitnessNotificationMessage.WITNESS_SHARE_MOVE: return WitnessEventType.SHARE_MOVE; case WitnessAsyncNotifyMessage.WitnessNotificationMessage.WITNESS_IP_CHANGE:Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 20.8K bytes - Click Count (0)