- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 997 for smb2 (0.02 sec)
-
src/main/java/jcifs/internal/smb2/ioctl/SrvPipePeekResponse.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.internal.smb2.ioctl; import jcifs.Decodable; import jcifs.internal.SMBProtocolDecodingException; import jcifs.internal.util.SMBUtil; /** * Response structure for SMB2 IOCTL pipe peek operation. * Provides information about data available in a named pipe. * * @author svella * */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/TreeConnectResponseTest.java
import org.mockito.MockitoAnnotations; import jcifs.Configuration; import jcifs.internal.smb1.ServerMessageBlock; import jcifs.internal.smb1.com.SmbComTreeConnectAndXResponse; import jcifs.internal.smb2.tree.Smb2TreeConnectResponse; /** * Test class for TreeConnectResponse interface and its implementations. * Tests both SMB1 and SMB2 protocol implementations. */ @DisplayName("TreeConnectResponse Tests")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.9K bytes - Viewed (0) -
src/test/java/jcifs/AllTestsSuite.java
import org.junit.platform.suite.api.SuiteDisplayName; /** * Test suite that runs all JCIFS tests */ @Suite @SuiteDisplayName("JCIFS Complete Test Suite") @SelectPackages({ "jcifs.util", "jcifs.smb", "jcifs.config", "jcifs.internal.smb2", "jcifs.ntlmssp" }) public class AllTestsSuite { // Test suite configuration
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 433 bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/Smb2HandleCapabilities.java
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package jcifs.internal.smb2.persistent; /** * Constants for SMB2/3 durable and persistent handle capabilities. */ public final class Smb2HandleCapabilities { /** * Flag indicating persistent handle capability */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbPipeHandleImpl.java
import jcifs.internal.smb1.trans.TransWaitNamedPipe; import jcifs.internal.smb1.trans.TransWaitNamedPipeResponse; import jcifs.internal.smb2.ioctl.Smb2IoctlRequest; import jcifs.internal.smb2.ioctl.Smb2IoctlResponse; import jcifs.util.ByteEncodable; /** * @author mbechler * */ class SmbPipeHandleImpl implements SmbPipeHandleInternal {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 10.2K bytes - Viewed (0) -
src/test/resources/log4j.properties
log4j.logger.jcifs: INFO #log4j.logger.jcifs.internal.smb2.create: DEBUG #log4j.logger.jcifs.smb.SmbTreeConnection: DEBUG #log4j.logger.jcifs.smb.SmbTransportImpl: DEBUG #log4j.logger.jcifs.util.transport.Transport: DEBUG #log4j.logger.jcifs.smb.DfsImpl: DEBUG #log4j.logger.jcifs.smb: DEBUG #log4j.logger.jcifs.smb.SmbFileOutputStream: TRACE #log4j.logger.jcifs.smb.SigningDigest: TRACE
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 806 bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbCopyUtilTest.java
SmbTreeHandleImpl sh = newTreeHandle(false); // force non-SMB2 path to avoid server-side branch SmbTreeHandleImpl dh = newTreeHandle(false); byte[][] buffers = new byte[][] { new byte[8], new byte[8] }; when(src.toString()).thenReturn("smb://src"); when(dest.toString()).thenReturn("smb://dest"); // Act + Assert SmbException ex =
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2CancelRequestTest.java
package jcifs.internal.smb2; import static jcifs.internal.smb2.ServerMessageBlock2.SMB2_CANCEL; import static jcifs.internal.smb2.ServerMessageBlock2.SMB2_FLAGS_ASYNC_COMMAND; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertNull; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.mockito.Mockito.mock;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/disni/DisniMemoryRegion.java
*/ package jcifs.internal.smb2.rdma.disni; import java.nio.ByteBuffer; import java.util.EnumSet; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.atomic.AtomicInteger; import java.util.concurrent.atomic.AtomicLong; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import jcifs.internal.smb2.rdma.RdmaAccess;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/PersistentHandleManager.java
import java.util.concurrent.locks.ReentrantReadWriteLock; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import jcifs.CIFSContext; import jcifs.internal.smb2.lease.Smb2LeaseKey; /** * Manager for persistent and durable SMB handles. * * This class provides: * - Handle lifecycle management * - Persistent storage for persistent handles * - Expiration tracking for durable handles
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 13K bytes - Viewed (0)