Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for useUnicode (0.09 sec)

  1. src/main/java/jcifs/config/BaseConfiguration.java

        protected int localPid = -1;
        protected TimeZone localTimeZone;
        protected SecureRandom random;
        protected boolean useBatching = false;
        protected boolean useUnicode = true;
        protected boolean forceUnicode = false;
        protected boolean signingPreferred = false;
        protected boolean signingEnforced = false;
        protected boolean ipcSigningEnforced = true;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/PropertyConfiguration.java

         * 
         */
        public PropertyConfiguration ( Properties p ) throws CIFSException {
            this.useBatching = Config.getBoolean(p, "jcifs.smb.client.useBatching", false);
            this.useUnicode = Config.getBoolean(p, "jcifs.smb.client.useUnicode", true);
            this.useLargeReadWrite = Config.getBoolean(p, "jcifs.smb.client.useLargeReadWrite", true);
            this.forceUnicode = Config.getBoolean(p, "jcifs.smb.client.forceUnicode", false);
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/Configuration.java

         * 
         * @return whether to failover to legacy transport on port 139
         */
        boolean isPort139FailoverEnabled ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.useUnicode</tt> (boolean, default true)
         * 
         * @return whether to announce support for unicode
         */
        boolean isUseUnicode ();
    
    
        /**
         *
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbTransportImpl.java

                throws SmbException {
            ensureConnected(); /* must negotiate before we can test flags2, useUnicode, etc */
            if ( this.smb2 && ! ( request instanceof ServerMessageBlock2 ) ) {
                throw new SmbException("Not an SMB2 request " + request.getClass().getName());
            }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
Back to top