Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for State (0.21 sec)

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

                    if (log.level >= 1)
                        log.println("Invalid state: " + state);
                    state = 0;
                    thread = null;
                }
            }
        }
        public synchronized void disconnect( boolean hard ) throws IOException {
            IOException ioe = null;
    
            switch (state) {
                case 0: /* not connected - just return */
                    return;
    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/util/transport/Transport.java

         */
        public boolean isDisconnected () {
            return this.state == 4 || this.state == 5 || this.state == 6 || this.state == 0;
        }
    
    
        /**
         * @return whether the transport is marked failed
         */
        public boolean isFailed () {
            return this.state == 5 || this.state == 6;
        }
    
    
        /**
         * Send a request message and recieve response
         * 
    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)
  3. src/main/java/jcifs/dcerpc/DcerpcHandle.java

        protected static DcerpcBinding parseBinding ( String str ) throws DcerpcException {
            int state, mark, si;
            char[] arr = str.toCharArray();
            String proto = null, key = null;
            DcerpcBinding binding = null;
    
            state = mark = si = 0;
            do {
                char ch = arr[ si ];
    
                switch ( state ) {
                case 0:
                    if ( ch == ':' ) {
    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)
  4. src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.idl

    	const uint32_t DFS_STORAGE_STATE_OFFLINE = 0x0001;
    	const uint32_t DFS_STORAGE_STATE_ONLINE = 0x0002;
    	const uint32_t DFS_STORAGE_STATE_ACTIVE = 0x0004;
    
    	typedef struct {
    		[string] wchar_t *entry_path;
    	} DfsInfo1;
    
    	typedef struct {
    		uint32_t count;
    		[size_is(count)] DfsInfo1 *s;
    	} DfsEnumArray1;
    
    	typedef struct {
    		uint32_t state;
    		[string] wchar_t *server_name;
    Others
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 1.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/dcerpc/msrpc/netdfs.idl

    	const uint32_t DFS_STORAGE_STATE_OFFLINE = 0x0001;
    	const uint32_t DFS_STORAGE_STATE_ONLINE = 0x0002;
    	const uint32_t DFS_STORAGE_STATE_ACTIVE = 0x0004;
    
    	typedef struct {
    		[string] wchar_t *entry_path;
    	} DfsInfo1;
    
    	typedef struct {
    		uint32_t count;
    		[size_is(count)] DfsInfo1 *s;
    	} DfsEnumArray1;
    
    	typedef struct {
    		uint32_t state;
    		[string] wchar_t *server_name;
    Others
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

            char ch;
            int i, j, state, len;
            char[] out;
            byte[] b = new byte[1];
    
            if( str == null ) {
                return null;
            }
    
            len = str.length();
            out = new char[len];
            state = 0;
            for( i = j = 0; i < len; i++ ) {
                switch( state ) {
                    case 0:
                        ch = str.charAt( i );
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 22.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/dcerpc/msrpc/netdfs.java

        public static final int DFS_VOLUME_FLAVOR_STANDALONE = 0x100;
        public static final int DFS_VOLUME_FLAVOR_AD_BLOB = 0x200;
        public static final int DFS_STORAGE_STATE_OFFLINE = 0x0001;
        public static final int DFS_STORAGE_STATE_ONLINE = 0x0002;
        public static final int DFS_STORAGE_STATE_ACTIVE = 0x0004;
    
        public static class DfsInfo1 extends NdrObject {
    
            public String entry_path;
    
    
            @Override
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:40:13 GMT 2019
    - 16.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbSession.java

                            }
        
                            break;
                        default:
                            throw new SmbException("Unexpected session setup state: " + state);
                    }
                } while (state != 0);
            } catch (SmbException se) {
                logoff(true);
                connectionState = 0;
                throw se;
            } finally {
                transport.notifyAll();
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 18.6K bytes
    - Viewed (0)
  9. README.md

    <dependency>
        <groupId>org.codelibs</groupId>
        <artifactId>jcifs</artifactId>
        <version>2.1.34</version>
    </dependency>
    ```
    
    ## Changes
    
     * SMB2 (2.02 protocol level) support, some SMB3 support
     * Remove global state
     * Allow per context configuration
     * Logging through SLF4J
     * Drop pre-java 1.7 support
     * Unify authentication subsystem, NTLMSSP/Kerberos support
     * Large ReadX/WriteX support
     * Streaming list operations
    Plain Text
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Wed May 10 09:29:34 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/NtStatus.java

        public static final int NT_STATUS_INSTANCE_NOT_AVAILABLE = 0xC00000ab;
        public static final int NT_STATUS_PIPE_NOT_AVAILABLE = 0xC00000ac;
        public static final int NT_STATUS_INVALID_PIPE_STATE = 0xC00000ad;
        public static final int NT_STATUS_PIPE_BUSY = 0xC00000ae;
        public static final int NT_STATUS_PIPE_DISCONNECTED = 0xC00000b0;
        public static final int NT_STATUS_PIPE_CLOSING = 0xC00000b1;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Jun 01 10:09:29 GMT 2019
    - 11.9K bytes
    - Viewed (0)
Back to top