Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for addr (0.13 sec)

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

                // seems to be correct according to
                // https://lists.samba.org/archive/samba-technical/2009-August/066486.html
                // UniAddress addr = UniAddress.getByName(authDomain, true, tf);
                // SmbTransport trans = tf.getTransportPool().getSmbTransport(tf, addr, 0);
                try ( SmbTransport dc = getDc(tf, authDomain) ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:07:29 GMT 2023
    - 29.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NameServiceClientImpl.java

            request.isBroadcast = request.addr == null || isBroadcastAddress(request.addr);
    
            if ( request.isBroadcast ) {
                if ( request.addr == null ) {
                    request.addr = this.baddr;
                }
                n = config.getNetbiosRetryCount();
            }
            else {
                n = 1;
            }
    
            do {
                try {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbFile.java

                } else {
                    UniAddress addr;
                    try {
                        addr = getAddress();
                    } catch( UnknownHostException uhe ) {
                        throw new SmbException( url.toString(), uhe );
                    }
                    if( addr.getAddress() instanceof NbtAddress ) {
                        int code = ((NbtAddress)addr.getAddress()).getNameType();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  4. src/main/java/jcifs/smb/SmbTransportImpl.java

            }
            this.sessions.add(ssn);
            return ssn;
        }
    
    
        boolean matches ( Address addr, int prt, InetAddress laddr, int lprt, String hostName ) {
            if ( this.state == 5 || this.state == 6 ) {
                // don't reuse disconnecting/disconnected transports
                return false;
            }
            if ( hostName == null )
                hostName = addr.getHostName();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  5. src/main/java/jcifs/spnego/NegTokenInit.java

                    for ( int i = 0; i < mechs.length; i++ ) {
                        vector.add(mechs[ i ]);
                    }
                    fields.add(new DERTaggedObject(true, 0, new DERSequence(vector)));
                }
                int ctxFlags = getContextFlags();
                if ( ctxFlags != 0 ) {
                    fields.add(new DERTaggedObject(true, 1, new DERBitString(ctxFlags)));
                }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Oct 01 12:01:17 GMT 2023
    - 7.9K bytes
    - Viewed (0)
  6. src/test/java/jcifs/tests/EnumTest.java

                    while ( chld.hasNext() ) {
    
                        try ( SmbResource next = chld.next() ) {
                            try ( CloseableIterator<SmbResource> children = next.children() ) {}
                            names.add(next.getName());
                        }
                    }
                }
    
                assertTrue("Test directory  enum-test/a/b/c/ not found", names.contains("c/"));
            }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 25.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/pac/kerberos/KerberosCredentials.java

            Set<Object> serverPrivateCredentials = this.subject.getPrivateCredentials();
            for ( Object credential : serverPrivateCredentials )
                if ( credential instanceof KerberosKey )
                    serverKeys.add((KerberosKey) credential);
    
            return serverKeys.toArray(new KerberosKey[0]);
        }
    
    
        public KerberosKey getKey ( int keyType ) {
            KerberosKey serverKey = null;
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Oct 02 12:02:06 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbSessionImpl.java

                        return t.acquire();
                    }
                }
                SmbTreeImpl t = new SmbTreeImpl(this, share, service);
                t.acquire();
                this.trees.add(t);
                return t;
            }
        }
    
    
        /**
         * Establish a tree connection with the configured logon share
         * 
         * @throws SmbException
         */
        @Override
    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