Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for ConnectionState (1.75 sec)

  1. src/main/java/jcifs/smb/SmbTreeImpl.java

        public String toString() {
            return "SmbTree[share=" + this.share + ",service=" + this.service + ",tid=" + this.tid + ",inDfs=" + this.inDfs + ",inDomainDfs="
                    + this.inDomainDfs + ",connectionState=" + this.connectionState + ",usage=" + this.usageCount.get() + "]";
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb1/smb1/SmbTreeTest.java

            assertEquals("testService", tree.service);
            assertEquals(0, tree.connectionState);
    
            // Test constructor with null service
            tree = new SmbTree(session, "testShare", null);
            assertEquals("TESTSHARE", tree.share);
            assertEquals("?????", tree.service);
            assertEquals(0, tree.connectionState);
    
            // Test constructor with service starting with "??"
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbSession.java

                SmbComSessionSetupAndX request;
                SmbComSessionSetupAndXResponse response;
                byte[] token = {};
                int state = 10;
    
                while (connectionState != 0) {
                    if (connectionState == 2 || connectionState == 3) { // connected or disconnecting
                        return;
                    }
                    try {
                        transport.wait();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbTree.java

            synchronized (session.transport()) {
                String unc;
    
                while (connectionState != 0) {
                    if (connectionState == 2 || connectionState == 3) { // connected or disconnecting
                        return;
                    }
                    try {
                        session.transport.wait();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbSessionImpl.java

                    + this.targetDomain + ",uid=" + this.uid + ",connectionState=" + this.connectionState + ",usage=" + this.usageCount.get()
                    + "]";
        }
    
        void setUid(int uid) {
            this.uid = uid;
        }
    
        void setSessionSetup(Smb2SessionSetupResponse response) {
            this.extendedSecurity = true;
            this.connectionState.set(2);
            this.sessionId = response.getSessionId();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 68.9K bytes
    - Viewed (0)
  6. api/go1.23.txt

    pkg crypto/tls, type Config struct, EncryptedClientHelloConfigList []uint8 #63369
    pkg crypto/tls, type Config struct, EncryptedClientHelloRejectionVerify func(ConnectionState) error #63369
    pkg crypto/tls, type ConnectionState struct, ECHAccepted bool #63369
    pkg crypto/tls, type ECHRejectionError struct #63369
    pkg crypto/tls, type ECHRejectionError struct, RetryConfigList []uint8 #63369
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue Jun 25 17:08:08 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. api/go1.21.txt

    pkg crypto/tls, method (*Config) DecryptTicket([]uint8, ConnectionState) (*SessionState, error) #60105
    pkg crypto/tls, method (*Config) EncryptTicket(ConnectionState, *SessionState) ([]uint8, error) #60105
    pkg crypto/tls, method (*QUICConn) Close() error #44886
    pkg crypto/tls, method (*QUICConn) ConnectionState() ConnectionState #44886
    pkg crypto/tls, method (*QUICConn) HandleData(QUICEncryptionLevel, []uint8) error #44886
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Mon Aug 07 09:39:17 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  8. doc/godebug.md

    Go 1.22 disabled
    [`ConnectionState.ExportKeyingMaterial`](/pkg/crypto/tls/#ConnectionState.ExportKeyingMaterial)
    when the connection supports neither TLS 1.3 nor Extended Master Secret
    (implemented in Go 1.21). It can be reenabled with the [`tlsunsafeekm`
    setting](/pkg/crypto/tls/#ConnectionState.ExportKeyingMaterial).
    
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue Jul 08 18:30:38 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  9. api/go1.25.txt

    pkg crypto/sha3, method (*SHA3) Clone() (hash.Cloner, error) #69521
    pkg crypto/tls, type Config struct, GetEncryptedClientHelloKeys func(*ClientHelloInfo) ([]EncryptedClientHelloKey, error) #71920
    pkg crypto/tls, type ConnectionState struct, CurveID CurveID #67516
    pkg debug/elf, const PT_RISCV_ATTRIBUTES = 1879048195 #72843
    pkg debug/elf, const PT_RISCV_ATTRIBUTES ProgType #72843
    pkg debug/elf, const SHT_RISCV_ATTRIBUTES = 1879048195 #72843
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Mon Jun 02 16:09:57 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SmbFile.java

            }
    
            final String hostName = getServerWithDfs();
            tree.inDomainDfs = dfs.resolve(hostName, tree.share, null, auth) != null;
            if (tree.inDomainDfs) {
                tree.connectionState = 2;
            }
    
            try {
                if (LogStream.level >= 3) {
                    log.println("doConnect: " + addr);
                }
    
                tree.treeConnect(null, null);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
Back to top