Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Saheed (0.16 sec)

  1. src/main/java/jcifs/smb1/util/transport/Transport.java

            switch (state) {
                case 0: /* not connected - just return */
                    return;
                case 2:
                    hard = true;
                case 3: /* connected - go ahead and disconnect */
                    if (response_map.size() != 0 && !hard) {
                        break; /* outstanding requests */
                    }
                    try {
                        doDisconnect( hard );
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/DcerpcHandle.java

                    if ( ch == '[' ) {
                        String server = str.substring(mark, si).trim();
                        if ( server.length() == 0 ) {
                            // this can also be a v6 address within brackets, look ahead required
                            int nexts = str.indexOf('[', si + 1);
                            int nexte = str.indexOf(']', si);
                            if ( nexts >= 0 && nexte >= 0 && nexte == nexts - 1 ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jun 30 10:11:57 GMT 2019
    - 12.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/util/transport/Transport.java

            case 0: /* not connected - just return */
            case 5:
            case 6:
                return false;
            case 2:
                hard = true;
            case 3: /* connected - go ahead and disconnect */
                if ( this.response_map.size() != 0 && !hard && inUse ) {
                    break; /* outstanding requests */
                }
                try {
                    this.state = 5;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Nov 01 18:12:21 GMT 2020
    - 24.1K bytes
    - Viewed (0)
Back to top