Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ch (0.02 sec)

  1. src/main/java/jcifs/smb1/http/NetworkExplorer.java

                p++;
            }
            if (p == len) {
                return null;
            }
    
            /* collect server name */
            while (p < len && (ch = pathInfo.charAt(p)) != '/') {
                out[i] = ch;
                i++;
                p++;
            }
            while (p < len && pathInfo.charAt(p) == '/') {
                p++;
            }
            if (p < len) { /* then there must be a share */
                out[i] = '/';
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 22.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

            state = 0;
            for (i = j = 0; i < len; i++) {
                switch (state) {
                case 0:
                    ch = str.charAt(i);
                    if (ch == '%') {
                        state = 1;
                    } else {
                        out[j++] = ch;
                    }
                    break;
                case 1:
                    /*
                     * Get ASCII hex value and convert to platform dependent
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30.3K bytes
    - Viewed (0)
Back to top