- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getBinding (0.14 sec)
-
src/test/java/jcifs/dcerpc/DcerpcHandleTest.java
// Then: Should initialize correctly assertNotNull(h); assertEquals(mockContext, h.getTransportContext()); assertNull(h.getBinding()); } @Test @DisplayName("Should create handle with context and binding") void testConstructorWithContextAndBinding() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.3K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcPipeHandleTest.java
lenient().when(handle.getServerWithDfs()).thenCallRealMethod(); lenient().when(handle.getSessionKey()).thenCallRealMethod(); lenient().when(handle.getBinding()).thenReturn(mockDcerpcBinding); lenient().doCallRealMethod().when(handle).doSendReceiveFragment(any(byte[].class), anyInt(), anyInt(), any(byte[].class));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcHandle.java
this.binding = binding; } /** * Returns the DCE/RPC binding for this handle * * @return the binding */ public DcerpcBinding getBinding() { return this.binding; } /** * @return the max_recv */ int getMaxRecv() { return this.max_recv; } /** * @return the max_xmit
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.9K bytes - Viewed (0)