Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 84 for Walser (0.17 sec)

  1. src/main/java/jcifs/smb/SmbTreeConnection.java

                            this.exclusiveTransport = null;
                            this.tree = null;
                            this.treeAcquired = false;
                            et.close();
                            et.disconnect(false, false);
                        }
                        catch ( Exception e ) {
                            log.error("Failed to close exclusive transport", e);
                        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 31K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NodeStatusResponse.java

                isBeingDeleted = ( ( src[ srcIndex + 16 ] & 0x10 ) == 0x10 ) ? true : false;
                isInConflict = ( ( src[ srcIndex + 16 ] & 0x08 ) == 0x08 ) ? true : false;
                isActive = ( ( src[ srcIndex + 16 ] & 0x04 ) == 0x04 ) ? true : false;
                isPermanent = ( ( src[ srcIndex + 16 ] & 0x02 ) == 0x02 ) ? true : false;
    
                /*
                 * The NbtAddress object used to query this node will be in the list
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

                this.connections.clear();
                this.nonPooledConnections.clear();
            }
            for ( SmbTransportImpl conn : toClose ) {
                try {
                    inUse |= conn.disconnect(false, false);
                }
                catch ( IOException e ) {
                    log.warn("Failed to close connection", e);
                }
            }
            synchronized ( this.connections ) {
                cleanup();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 12.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/NetShareEnumResponse.java

            int start = bufferIndex;
            SmbShareInfo e;
    
            useUnicode = false;
    
            results = new SmbShareInfo[numEntries];
            for( int i = 0; i < numEntries; i++ ) {
                results[i] = e = new SmbShareInfo();
                e.netName = readString( buffer, bufferIndex, 13, false );
                bufferIndex += 14;
                e.type = readInt2( buffer, bufferIndex );
                bufferIndex += 2;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/netbios/Lmhosts.java

                    j = i;
                    while( j < data.length && Character.isWhitespace( data[j] ) == false ) {
                        j++;
                    }
    
                    name = new Name( line.substring( i, j ), 0x20, null );
                    addr = new NbtAddress( name, ip, false, NbtAddress.B_NODE,
                                        false, false, true, true,
                                        NbtAddress.UNKNOWN_MAC_ADDRESS );
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 5.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/net/NetShareEnumResponse.java

            int start = bufferIndex;
            SmbShareInfo e;
    
            setUseUnicode(false);
    
            SmbShareInfo[] results = new SmbShareInfo[getNumEntries()];
            for ( int i = 0; i < getNumEntries(); i++ ) {
                results[ i ] = e = new SmbShareInfo();
                e.netName = readString(buffer, bufferIndex, 13, false);
                bufferIndex += 14;
                e.type = SMBUtil.readInt2(buffer, bufferIndex);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbFileHandleImpl.java

                        t.send(new SmbComClose(this.cfg, this.fid, lastWriteTime), new SmbComBlankResponse(this.cfg), RequestParam.NO_RETRY);
                    }
                }
            }
            finally {
                this.open = false;
                if ( t != null ) {
                    // release tree usage
                    t.release();
                }
                this.tree = null;
            }
        }
    
    
        /**
         * {@inheritDoc}
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/netbios/NodeStatusRequest.java

        NodeStatusRequest ( Configuration cfg, Name name ) {
            super(cfg);
            this.questionName = name;
            this.questionType = NBSTAT;
            this.isRecurDesired = false;
            this.isBroadcast = false;
        }
    
    
        @Override
        int writeBodyWireFormat ( byte[] dst, int dstIndex ) {
            int tmp = this.questionName.hexCode;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/dcerpc/msrpc/LsaPolicyHandle.java

            handle.sendrecv(rpc);
            if (rpc.retval != 0)
                throw new SmbException(rpc.retval, false);
        }
    
        public void close() throws IOException {
            MsrpcLsarClose rpc = new MsrpcLsarClose(this);
            handle.sendrecv(rpc);
            if (rpc.retval != 0)
                throw new SmbException(rpc.retval, false);
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 1.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/dcerpc/msrpc/SamrPolicyHandle.java

        public synchronized void close () throws IOException {
            if ( this.opened ) {
                this.opened = false;
                samr.SamrCloseHandle rpc = new MsrpcSamrCloseHandle(this);
                this.handle.sendrecv(rpc);
                if ( rpc.retval != 0 ) {
                    throw new SmbException(rpc.retval, false);
                }
            }
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.2K bytes
    - Viewed (0)
Back to top