Search Options

Results per page
Sort
Preferred Languages
Advance

Results 261 - 270 of 448 for rprotocol (0.82 sec)

  1. src/main/java/jcifs/dcerpc/DcerpcBinding.java

        private int major;
        private int minor;
    
        DcerpcBinding(final String proto, final String server) {
            this.proto = proto;
            this.server = server;
        }
    
        /**
         * Get the protocol for this binding.
         * @return the proto
         */
        public String getProto() {
            return this.proto;
        }
    
        /**
         * Get the options for this binding.
         * @return the options
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/net/NetServerEnum2Response.java

    /**
     * SMB1 NetServerEnum2 transaction response implementation.
     * Handles responses from network server enumeration operations, parsing server
     * information returned by the NetServerEnum2 transaction in SMB1 protocol.
     *
     * @author mbechler
     *
     */
    public class NetServerEnum2Response extends SmbComTransactionResponse {
    
        private static final Logger log = LoggerFactory.getLogger(NetServerEnum2Response.class);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6K bytes
    - Viewed (0)
  3. okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSession.kt

      override fun getLocalPrincipal(): Principal = delegate!!.localPrincipal
    
      override fun getCipherSuite(): String = delegate!!.cipherSuite
    
      override fun getProtocol(): String = delegate!!.protocol
    
      override fun getPeerHost(): String = delegate!!.peerHost
    
      override fun getPeerPort(): Int = delegate!!.peerPort
    
      override fun getPacketBufferSize(): Int = delegate!!.packetBufferSize
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  4. src/test/java/jcifs/config/BaseConfigurationTest.java

            // Check resolver order
            assertNotNull(testConfig.getResolveOrder());
            assertFalse(testConfig.getResolveOrder().isEmpty());
    
            // Check protocol versions
            assertNotNull(testConfig.getMinimumVersion());
            assertNotNull(testConfig.getMaximumVersion());
    
            // Check disallow compound
            assertNotNull(testConfig.disallowCompound);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/SMBSigningDigest.java

     */
    package jcifs.internal;
    
    /**
     * Interface for SMB message signing and verification operations.
     * Provides cryptographic signing capabilities for SMB protocol messages to ensure
     * message integrity and authenticity using MAC (Message Authentication Code) algorithms.
     *
     * @author mbechler
     */
    public interface SMBSigningDigest {
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  6. docs/es/docs/deployment/https.md

    * **Después** de obtener una conexión segura, el protocolo de comunicación sigue siendo **HTTP**.
        * Los contenidos están **encriptados**, aunque se envién con el **protocolo HTTP**.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun May 11 13:37:26 UTC 2025
    - 13K bytes
    - Viewed (0)
  7. okhttp/src/jvmTest/kotlin/okhttp3/CipherSuiteTest.kt

        private lateinit var enabledCipherSuites: Array<String>
    
        override fun getEnabledProtocols(): Array<String> = enabledProtocols
    
        override fun setEnabledProtocols(protocols: Array<String>) {
          this.enabledProtocols = protocols
        }
    
        override fun getSupportedCipherSuites(): Array<String> = supportedCipherSuites
    
        fun setSupportedCipherSuites(supportedCipherSuites: Array<String>) {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/witness/WitnessRegistration.java

    import java.util.concurrent.atomic.AtomicLong;
    
    /**
     * Represents a witness service registration for SMB resource monitoring.
     * This class maintains registration state, heartbeat information, and
     * sequence numbers for witness protocol communication.
     */
    public class WitnessRegistration {
        private final String registrationId;
        private final String shareName;
        private final InetAddress serverAddress;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Mon Aug 25 14:34:10 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponse.java

     * information with file entries and their attributes.
     *
     * @author mbechler
     *
     */
    public class Smb2QueryDirectoryResponse extends ServerMessageBlock2Response {
    
        /**
         * Protocol overhead size for SMB2 query directory response
         */
        public static final int OVERHEAD = Smb2Constants.SMB2_HEADER_LENGTH + 8;
    
        private final byte expectInfoClass;
        private FileEntry[] results;
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  10. docs/sts/client-grants.go

    	clientID     string
    	clientSecret string
    )
    
    func init() {
    	flag.StringVar(&stsEndpoint, "sts-ep", "http://localhost:9000", "STS endpoint")
    	flag.StringVar(&idpEndpoint, "idp-ep", "http://localhost:8080/auth/realms/minio/protocol/openid-connect/token", "IDP token endpoint")
    	flag.StringVar(&clientID, "cid", "", "Client ID")
    	flag.StringVar(&clientSecret, "csec", "", "Client secret")
    }
    
    func getTokenExpiry() (*credentials.ClientGrantsToken, error) {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Aug 19 01:35:22 UTC 2021
    - 3.3K bytes
    - Viewed (0)
Back to top