- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 241 for transports (0.05 sec)
-
src/main/java/jcifs/smb1/smb1/SmbTransport.java
import jcifs.smb1.util.LogStream; import jcifs.smb1.util.transport.Request; import jcifs.smb1.util.transport.Response; import jcifs.smb1.util.transport.Transport; import jcifs.smb1.util.transport.TransportException; /** * Legacy SMB transport implementation for SMB1 protocol communication. * Handles the low-level transport layer for SMB1 protocol messages. */ public class SmbTransport extends Transport implements SmbConstants {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.8K bytes - Viewed (0) -
docs/smb3-features/06-witness-protocol-design.md
try { // Create new transport to new address SmbTransport newTransport = new SmbTransport(context, newAddress, transport.getPort()); // Disconnect old transport transport.disconnect(); // Replace with new transport this.transport = newTransport; newTransport.connect();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 42K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/Message.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.util.transport; /** * Base class for transport-layer messages in the jCIFS network communication. * Provides common functionality for message handling and processing. * * @author mbechler */ public interface Message { /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.6K bytes - Viewed (0) -
src/test/java/jcifs/util/transport/TransportExceptionTest.java
package jcifs.util.transport; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertNull; import static org.junit.jupiter.api.Assertions.assertThrows; import static org.junit.jupiter.api.Assertions.assertTrue; import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.Test; import jcifs.CIFSException; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/SMB1SigningDigestTest.java
@Test @DisplayName("Test constructor with transport and auth - LM compatibility 0") void testConstructorWithTransportLMCompat0() throws Exception { setupTransportMocks(0); SMB1SigningDigest digest = new SMB1SigningDigest(mockTransport, mockAuth); assertNotNull(digest); } @Test @DisplayName("Test constructor with transport and auth - LM compatibility 1")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0) -
cmd/sts-handlers_test.go
minioClient, err := minio.New(s.endpoint, &minio.Options{ Creds: cr.NewStaticV4(value.AccessKeyID, value.SecretAccessKey, value.SessionToken), Secure: s.secure, Transport: s.TestSuiteCommon.client.Transport, }) if err != nil { c.Fatalf("Error initializing client: %v", err) } // Validate that the client from sts creds can access the bucket. c.mustListObjects(ctx, minioClient, bucket)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 100.2K bytes - Viewed (1) -
src/main/java/jcifs/internal/smb1/ServerMessageBlock.java
} /** * {@inheritDoc} * * @see jcifs.util.transport.Request#getCreditCost() */ @Override public int getCreditCost() { return 1; } /** * {@inheritDoc} * * @see jcifs.util.transport.Response#getGrantedCredits() */ @Override public int getGrantedCredits() { return 1;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 38.9K 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/main/java/jcifs/internal/smb2/Smb2CancelRequest.java
setMid(mid); setAsyncId(asyncId); if (asyncId != 0) { addFlags(SMB2_FLAGS_ASYNC_COMMAND); } } /** * {@inheritDoc} * * @see jcifs.util.transport.Request#getCreditCost() */ @Override public int getCreditCost() { return 1; } /** * {@inheritDoc} *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.5K bytes - Viewed (0) -
cmd/warm-backend-s3.go
} // Credentials initialization var creds *credentials.Credentials switch { case conf.AWSRole: creds = credentials.New(&credentials.IAM{ Client: &http.Client{ Transport: NewHTTPTransport(), }, }) case conf.AWSRoleWebIdentityTokenFile != "" && conf.AWSRoleARN != "": sessionName := conf.AWSRoleSessionName if sessionName == "" {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Jun 08 16:13:30 UTC 2025 - 5.8K bytes - Viewed (0)