Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 112 for defaults (0.19 sec)

  1. src/main/java/jcifs/smb1/netbios/NbtSocket.java

     */
    
    public class NbtSocket extends Socket {
    
        private static final int SSN_SRVC_PORT = 139;
        private static final int BUFFER_SIZE = 512;
        private static final int DEFAULT_SO_TIMEOUT = 5000;
    
        private static LogStream log = LogStream.getInstance();
    
        private NbtAddress address;
        private Name calledName;
        private int soTimeout;
    
        public NbtSocket() {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 4.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/DosFileFilter.java

         * as the specified wildcard and attributes are passed to the server for
         * filtering there (although attributes are largely ignored by servers
         * they are filtered locally by the default accept method).
         * 
         * @param wildcard
         * @param attributes
         */
        public DosFileFilter ( String wildcard, int attributes ) {
            this.wildcard = wildcard;
            this.attributes = attributes;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/pac/PacSignature.java

                    break;
                case HMAC_SHA1_96_AES128:
                case HMAC_SHA1_96_AES256:
                    this.checksum = new byte[12];
                    break;
                default:
                    this.checksum = new byte[bufferStream.available()];
                    break;
                }
                bufferStream.readFully(this.checksum);
            }
            catch ( IOException e ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/Handler.java

        /**
         * @param tc
         */
        public Handler ( CIFSContext tc ) {
            this.transportContext = tc;
        }
    
    
        @Override
        protected int getDefaultPort () {
            return SmbConstants.DEFAULT_PORT;
        }
    
    
        @Override
        public URLConnection openConnection ( URL u ) throws IOException {
            if ( log.isDebugEnabled() ) {
                log.debug("Opening file " + u);
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jun 06 09:14:24 GMT 2020
    - 2.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/pac/kerberos/KerberosApRequest.java

                    }
                    break;
                case 4:
                    // Let's ignore this for now
                    break;
                default:
                    throw new PACDecodingException("Invalid field in kerberos ticket");
                }
            }
        }
    
    
        public byte getApOptions () {
            return this.apOptions;
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Oct 02 12:02:06 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponse.java

                inf = new FileStandardInfo();
                break;
            case FileInformation.FILE_INTERNAL_INFO:
                inf = new FileInternalInfo();
                break;
            default:
                return null;
            }
            return inf;
        }
    
    
        @Override
        public String toString () {
            return new String("Trans2QueryPathInformationResponse[" + super.toString() + "]");
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/CIFSContext.java

         * @return an URL handler using this context
         */
        URLStreamHandler getUrlHandler ();
    
    
        /**
         * @return whether default credentials are available
         */
        boolean hasDefaultCredentials ();
    
    
        /**
         * @return a child context using the configured default credentials
         */
        CIFSContext withDefaultCredentials ();
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/UniAddress.java

            } catch( UnknownHostException uhe ) {
            }
    
            if( ro == null || ro.length() == 0 ) {
    
                /* No resolveOrder has been specified, use the
                 * default which is LMHOSTS,WINS,BCAST,DNS or just
                 * LMHOSTS,BCAST,DNS if jcifs.smb1.netbios.wins has not
                 * been specified.
                 */
    
                if( nbns == null ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 16.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/ntlmssp/Type3Message.java

            parse(material);
        }
    
    
        /**
         * Returns the default flags for a generic Type-3 message in the
         * current environment.
         * 
         * @param tc
         *            context to use
         * @return An <code>int</code> containing the default flags.
         */
        public static int getDefaultFlags ( CIFSContext tc ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 30.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/dcerpc/UUID.java

                        break;
                    case 'a': case 'b': case 'c': case 'd': case 'e': case 'f':
                        value += 10 + (arr[ai] - 'a');
                        break;
                    default:
                        throw new IllegalArgumentException(new String(arr, offset, length));
                }
                count++;
            }
    
            return value;
        }
        static final char[] HEXCHARS = {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 4.1K bytes
    - Viewed (0)
Back to top