- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 241 for transports (0.34 sec)
-
src/main/java/jcifs/internal/smb2/nego/Smb2RdmaTransformCapabilitiesContext.java
public static final int CONTEXT_ID = Smb2Constants.SMB2_RDMA_TRANSFORM_CAPABILITIES; // Transform count and reserved fields private int transformCount = 1; // Number of transforms (always 1 for SMBDirect) private int reserved1 = 0; private int reserved2 = 0; // SMB_DIRECT_RDMA_TRANSFORM_V1 private int rdmaTransformId = 0x0001; // SMB_DIRECT_RDMA_TRANSFORM_V1 /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 4.4K bytes - Viewed (0) -
docs/sts/client-grants.go
return nil, err } req.Header.Set("Content-Type", "application/x-www-form-urlencoded") req.SetBasicAuth(clientID, clientSecret) t := &http.Transport{ TLSClientConfig: &tls.Config{ InsecureSkipVerify: true, }, } hclient := http.Client{ Transport: t, } resp, err := hclient.Do(req) if err != nil { return nil, err } defer resp.Body.Close() if resp.StatusCode != http.StatusOK {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Aug 19 01:35:22 UTC 2021 - 3.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Dfs.java
domain = domain.toLowerCase(); return domains.get(domain) != null; } /** * Gets a domain controller transport for the specified domain * @param domain the domain name * @param auth the authentication credentials * @return an SMB transport to the domain controller * @throws SmbAuthException if authentication fails */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/DfsImpl.java
return null; } final SmbTransportImpl transport = getReferralTransport(tf, getDcReferrals(tf, domain)); if (transport == null && log.isDebugEnabled()) { log.debug(String.format("Failed to connect to domain controller for %s", domain)); } return transport; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 29.7K bytes - Viewed (0) -
src/test/java/jcifs/context/BaseContextTest.java
} } @Test @DisplayName("getTransportPool should return initialized transport pool") void testGetTransportPool() { // When SmbTransportPool transportPool = context.getTransportPool(); // Then assertNotNull(transportPool, "Transport pool should not be null");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/jcifs/Address.java
*/ String firstCalledName(); /** * Guess next called name to try for session establishment. These * methods are used by the smb package. * * @param tc the transport context to use for name resolution * * @return guessed name */ String nextCalledName(CIFSContext tc);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/CommonServerMessageBlockRequest.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.internal; import jcifs.util.transport.Request; /** * Interface for SMB request messages sent from client to server. * Extends the common SMB message block with request-specific functionality including
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java
import jcifs.internal.smb1.ServerMessageBlock; import jcifs.internal.smb1.trans.SmbComTransaction; import jcifs.internal.util.SMBUtil; import jcifs.util.Hexdump; import jcifs.util.Strings; import jcifs.util.transport.Response; /** * SMB1 Negotiate Protocol Response message. * * This response contains information about the server's capabilities, * security mode, and supported protocol version. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/CommonServerMessageBlockResponse.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.internal; import jcifs.util.transport.Response; /** * Interface for SMB response messages received from server. * Extends the common SMB message block with response-specific functionality including
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.6K bytes - Viewed (0) -
cmd/utils.go
defer cancel() transport, err := s.NewHTTPTransportWithClientCerts(ctx, clientCert, clientKey) if err != nil { internalLogIf(ctx, fmt.Errorf("Unable to load client key and cert, please check your client certificate configuration: %w", err)) } if transport == nil { // Client certs are not readable return default transport. return s.NewHTTPTransportWithTimeout(1 * time.Minute) }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 33K bytes - Viewed (0)