Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SmbNegotiation (0.2 sec)

  1. src/main/java/jcifs/internal/SmbNegotiation.java

     * Holds the negotiation request, response, and raw buffer data exchanged
     * between client and server during SMB protocol version negotiation.
     *
     * @author mbechler
     */
    public final class SmbNegotiation {
    
        private final SmbNegotiationRequest request;
        private final SmbNegotiationResponse response;
        private final byte[] negoReqBuffer;
        private final byte[] negoRespBuffer;
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/SmbNegotiationTest.java

    import org.mockito.MockitoAnnotations;
    
    /**
     * Test class for SmbNegotiation
     */
    class SmbNegotiationTest {
    
        @Mock
        private SmbNegotiationRequest mockRequest;
    
        @Mock
        private SmbNegotiationResponse mockResponse;
    
        private byte[] testRequestBuffer;
        private byte[] testResponseBuffer;
        private SmbNegotiation negotiation;
    
        @BeforeEach
        void setUp() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTransportImpl.java

    import jcifs.internal.CommonServerMessageBlockResponse;
    import jcifs.internal.RequestWithPath;
    import jcifs.internal.SMBProtocolDecodingException;
    import jcifs.internal.SMBSigningDigest;
    import jcifs.internal.SmbNegotiation;
    import jcifs.internal.SmbNegotiationResponse;
    import jcifs.internal.dfs.DfsReferralDataImpl;
    import jcifs.internal.dfs.DfsReferralRequestBuffer;
    import jcifs.internal.dfs.DfsReferralResponseBuffer;
    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