Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for New (0.12 sec)

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

            CIFSContext tc = this.transportContext;
            Name calledName = new Name(tc.getConfig(), this.address.firstCalledName(), 0x20, null);
            do {
                this.socket = new Socket();
                if ( this.localAddr != null )
                    this.socket.bind(new InetSocketAddress(this.localAddr, this.localPort));
                this.socket.connect(new InetSocketAddress(this.address.getHostAddress(), 139), tc.getConfig().getConnTimeout());
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

                if ( name == null || name.length() == 0 ) {
                    throw new SmbException("Name must not be empty");
                }
                return new SmbFile(this, name);
            }
            catch (
                MalformedURLException |
                UnknownHostException e ) {
                // this should not actually happen
                throw new SmbException("Failed to resolve child element", e);
            }
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbSessionImpl.java

        private CredentialsInternal credentials;
        private byte[] sessionKey;
        private boolean extendedSecurity;
    
        private final AtomicLong usageCount = new AtomicLong(1);
        private final AtomicBoolean transportAcquired = new AtomicBoolean(true);
    
        private long sessionId;
    
        private SMBSigningDigest digest;
    
        private final String targetDomain;
        private final String targetHost;
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
Back to top