Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for Smb2IoctlResponse (0.11 sec)

  1. src/test/java/jcifs/smb/SmbPipeHandleInternalTest.java

    import jcifs.internal.smb2.ioctl.Smb2IoctlRequest;
    import jcifs.internal.smb2.ioctl.Smb2IoctlResponse;
    
    @ExtendWith(MockitoExtension.class)
    class SmbPipeHandleInternalTest {
    
        @Mock
        private SmbNamedPipe pipe;
    
        @Mock
        private SmbTreeHandleImpl tree;
    
        @Mock
        private SmbFileHandleImpl fh;
    
        @Mock
        private Smb2IoctlResponse ioctlResp;
    
        @Mock
        private Configuration config;
    
        @Mock
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 16.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java

            // For now, we're preparing the request structure correctly
    
            // TODO: Integration point - send request through session.send()
            // Smb2IoctlResponse response = (Smb2IoctlResponse) session.send(request);
            // if (response.isSuccess()) {
            //     parseNetworkInterfaces(response.getOutputData());
            // }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 20K bytes
    - Viewed (0)
  3. docs/smb3-features/03-multi-channel-design.md

            request.setCtlCode(FSCTL_QUERY_NETWORK_INTERFACE_INFO);
            request.setFileId(new byte[16]);  // Use session ID
            request.setMaxOutputResponse(65536);
            
            Smb2IoctlResponse response = (Smb2IoctlResponse) session.send(request);
            
            if (response.isSuccess()) {
                parseNetworkInterfaces(response.getOutputData());
            }
        }
        
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbTransportImpl.java

            case NtStatus.NT_STATUS_BUFFER_OVERFLOW:
                if (resp instanceof Smb2ReadResponse) {
                    break;
                }
                if (resp instanceof Smb2IoctlResponse) {
                    final int ctlCode = ((Smb2IoctlResponse) resp).getCtlCode();
                    if (ctlCode == Smb2IoctlRequest.FSCTL_PIPE_TRANSCEIVE || ctlCode == Smb2IoctlRequest.FSCTL_PIPE_PEEK) {
                        break;
                    }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 69.8K bytes
    - Viewed (0)
Back to top