Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for svar (0.26 sec)

  1. src/test/java/jcifs/tests/DelegatingNameServiceClient.java

            return this.nscl.getNbtByName(host, type, scope, svr);
        }
    
    
        @Override
        public NetbiosAddress[] getNbtAllByName ( String host, int type, String scope, InetAddress svr ) throws UnknownHostException {
            return this.nscl.getNbtAllByName(host, type, scope, svr);
        }
    
    
        @Override
    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)
  2. src/main/java/jcifs/smb1/netbios/NbtAddress.java

        }
    
        static NbtAddress doNameQuery( Name name, InetAddress svr )
                                                        throws UnknownHostException {
            NbtAddress addr;
    
            if( name.hexCode == 0x1d && svr == null ) {
                svr = CLIENT.baddr; // bit of a hack but saves a lookup
            }
            name.srcHashCode = svr != null ? svr.hashCode() : 0;
            addr = getCachedAddress( name );
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 30.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/NameServiceClient.java

         * @param scope
         *            the scope of the name
         * @param svr
         *            server to query
         * 
         * @return the resolved addresses
         * @throws UnknownHostException
         */
        NetbiosAddress[] getNbtAllByName ( String host, int type, String scope, InetAddress svr ) throws UnknownHostException;
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/NameServiceClientImpl.java

        }
    
    
        NbtAddress doNameQuery ( Name name, InetAddress svr ) throws UnknownHostException {
            NbtAddress addr;
    
            if ( name.hexCode == 0x1d && svr == null ) {
                svr = this.baddr; // bit of a hack but saves a lookup
            }
            name.srcHashCode = svr != null ? svr.hashCode() : 0;
            addr = getCachedAddress(name);
    
            if ( addr == null ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/UniAddress.java

        static NbtAddress lookupServerOrWorkgroup( String name, InetAddress svr )
                                                        throws UnknownHostException {
            Sem sem = new Sem( 2 );
            int type = NbtAddress.isWINS( svr ) ? 0x1b : 0x1d;
    
            QueryThread q1x = new QueryThread( sem, name, type, null, svr );
            QueryThread q20 = new QueryThread( sem, name, 0x20, null, svr );
            q1x.setDaemon( true );
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 16.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/util/MD4.java

         */
        private void transform (byte[] block, int offset) {
    
            // encodes 64 bytes from input block into an array of 16 32-bit
            // entities. Use A as a temp var.
            for (int i = 0; i < 16; i++)
                X[i] = (block[offset++] & 0xFF)       |
                       (block[offset++] & 0xFF) <<  8 |
                       (block[offset++] & 0xFF) << 16 |
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 9.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/util/mime.map

    application/x-mif              mif              #
    application/x-netcdf           nc cdf           #
    #application/x-sh               sh               # sh Shell Program
    application/x-shar             shar             #
    application/x-shockwave-flash  swf              # Macromedia Shockwave file
    application/x-spss             sav spp sbs sps spo # SPSS
    application/x-stuffit          sit              # Macintosh Stuff-It
    Plain Text
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 5.9K bytes
    - Viewed (0)
Back to top