Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for hexone (0.18 sec)

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

         */
                    if( !addrFound && queryAddress.hostName.hexCode == hexCode &&
                            ( queryAddress.hostName == NbtAddress.UNKNOWN_NAME ||
                            queryAddress.hostName.name.equals( n ))) {
        
                        if( queryAddress.hostName == NbtAddress.UNKNOWN_NAME ) {
                            queryAddress.hostName = new Name( n, hexCode, scope );
                        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 6K bytes
    - Viewed (0)
  2. 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);
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                        case RESOLVER_BCAST:
                            if( resolveOrder[i] == RESOLVER_WINS &&
                                    name.name != NbtAddress.MASTER_BROWSER_NAME &&
                                    name.hexCode != 0x1d ) {
                                request.addr = NbtAddress.getWINSAddress();
                                request.isBroadcast = false;
                            } else {
                                request.addr = baddr;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 17.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/netbios/NodeStatusRequest.java

            isBroadcast = false;
        }
    
        int writeBodyWireFormat( byte[] dst, int dstIndex ) {
            int tmp = questionName.hexCode;
            questionName.hexCode = 0x00; // type has to be 0x00 for node status
            int result = writeQuestionSectionWireFormat( dst, dstIndex );
            questionName.hexCode = tmp;
            return result;
        }
        int readBodyWireFormat( byte[] src, int srcIndex ) {
            return 0;
        }
    Java
    - 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/smb1/smb1/SmbFile.java

     * A relativly sophisticated example that references a file
     * <code>msmith1</code>'s desktop as user <code>Administrator</code>. Notice the '@' is URL encoded with the '%40' hexcode escape.
     * </td></tr>
     * 
     * <tr><td width="20%"><code>smb1://angus/</code></td><td>
     * This references only a server. The behavior of some methods is different
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  6. src/main/java/jcifs/smb/SmbFile.java

     * <td>
     * A relatively sophisticated example that references a file
     * <code>msmith1</code>'s desktop as user <code>Administrator</code>. Notice the '@' is URL encoded with the '%40'
     * hexcode escape.
     * </td>
     * </tr>
     * 
     * <tr>
     * <td width="20%"><code>smb://angus/</code></td>
     * <td>
     * This references only a server. The behavior of some methods is different
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/netbios/Name.java

                return false;
            }
            n = (Name) obj;
            if ( this.scope == null && n.scope == null ) {
                return this.name.equals(n.name) && this.hexCode == n.hexCode;
            }
            return this.name.equals(n.name) && this.hexCode == n.hexCode && this.scope.equals(n.scope);
        }
    
    
        @Override
        public String toString () {
            StringBuffer sb = new StringBuffer();
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/netbios/NodeStatusResponse.java

                 */
                if ( !addrFound && this.queryAddress.hostName.hexCode == hexCode
                        && ( this.queryAddress.hostName.isUnknown() || this.queryAddress.hostName.name.equals(n) ) ) {
    
                    if ( this.queryAddress.hostName.isUnknown() ) {
                        this.queryAddress.hostName = new Name(this.config, n, hexCode, scope);
                    }
                    this.queryAddress.groupName = groupName;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/netbios/NodeStatusRequest.java

        }
    
    
        @Override
        int writeBodyWireFormat ( byte[] dst, int dstIndex ) {
            int tmp = this.questionName.hexCode;
            this.questionName.hexCode = 0x00; // type has to be 0x00 for node status
            int result = writeQuestionSectionWireFormat(dst, dstIndex);
            this.questionName.hexCode = tmp;
            return result;
        }
    
    
        @Override
        int readBodyWireFormat ( byte[] src, int srcIndex ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/netbios/NbtAddress.java

                    if ( i < len && data[ i ] == '.' ) {
                        dots++;
                        i++;
                    }
                }
            }
            else {
                switch ( this.hostName.hexCode ) {
                case 0x1B:
                case 0x1C:
                case 0x1D:
                    this.calledName = SMBSERVER_NAME;
                }
            }
    
            return this.calledName;
        }
    
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 15.2K bytes
    - Viewed (0)
Back to top