Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for same (0.12 sec)

  1. src/main/java/jcifs/smb1/netbios/NbtAddress.java

                throw new UnknownHostException( name.toString() );
            }
            return addr;
        }
    
        private static Object checkLookupTable( Name name ) {
            Object obj;
    
            synchronized( LOOKUP_TABLE ) {
                if( LOOKUP_TABLE.containsKey( name ) == false ) {
                    LOOKUP_TABLE.put( name, name );
                    return null;
                }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 30.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NbtAddress.java

         * 
         * 2) IP Address, NetBIOS name, nodeType, groupName - If however a
         * legal NetBIOS name string is used a name query request will retreive
         * the IP, node type, and whether or not this NbtAddress represents a
         * group name. This degree of state can be obtained with a Name Query
         * Request or Node Status Request.
         * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 15.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                        log.trace("Failed to send nameservice request for " + name.name, ioe);
                    }
                    throw new UnknownHostException(name.name);
                }
                catch ( IOException ioe ) {
                    log.info("Failed to send nameservice request for " + name.name, ioe);
                    throw new UnknownHostException(name.name);
                }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 14 14:26:22 UTC 2022
    - 38.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbTreeConnection.java

            }
            catch ( SmbAuthException sae ) {
                log.debug("Authentication failed", sae);
                return retryAuthentication(loc, share, trans, t, referral, sae);
            }
        }
    
    
        private SmbTreeImpl retryAuthentication ( SmbResourceLocatorImpl loc, String share, SmbTransportInternal trans, SmbTreeImpl t,
                DfsReferralData referral, SmbAuthException sae ) throws SmbAuthException, CIFSException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 31K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                    throw new UnknownHostException( name.name );
                }
    
                if( response.received && response.resultCode == 0 ) {
                    return response.addrEntry;
                }
            } while( --n > 0 && request.isBroadcast );
    
            throw new UnknownHostException( name.name );
        }
        NbtAddress getByName( Name name, InetAddress addr )
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 17.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/AndXServerMessageBlock.java

             * that chained message. Before doing so we must increment
             * the batchLevel of the andx message in case it itself is an
             * andx message and needs to perform the same check as above.
             */
    
            andx.batchLevel = batchLevel + 1;
    
    
            dst[start + ANDX_COMMAND_OFFSET] = andxCommand;
            dst[start + ANDX_RESERVED_OFFSET] = (byte)0x00;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

        private int andxOffset = 0;
    
        private ServerMessageBlock andx;
    
    
        protected AndXServerMessageBlock ( Configuration config, byte command, String name, ServerMessageBlock andx ) {
            super(config, command, name);
            this.andx = andx;
            if ( andx != null ) {
                this.andxCommand = (byte) andx.getCommand();
            }
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Nov 28 10:56:27 UTC 2022
    - 14.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

         * actually purer. However, in the case of smb we know the
         * wordCount and byteCount. And since every subclass of
         * ServerMessageBlock would have to perform the same read
         * operation on the input stream, we might as will pull that
         * common functionality into the superclass and read wordCount
         * and byteCount worth of data.
         * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 21K bytes
    - Viewed (0)
  9. src/main/java/jcifs/SmbResource.java

         * effectively be the name of the file or directory represented by this
         * <code>SmbResource</code> or in the case of URLs that only specify a server
         * or workgroup, the server or workgroup will be returned. The name of
         * the root URL <code>smb://</code> is also <code>smb://</code>. If this
         * <tt>SmbResource</tt> refers to a workgroup, server, share, or directory,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 26K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

         * actually purer. However, in the case of smb we know the
         * wordCount and byteCount. And since every subclass of
         * ServerMessageBlock would have to perform the same read
         * operation on the input stream, we might as will pull that
         * common functionality into the superclass and read wordCount
         * and byteCount worth of data.
         * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 32.7K bytes
    - Viewed (0)
Back to top