Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for nodeV (0.13 sec)

  1. src/main/java/jcifs/dcerpc/rpc.java

                int _nodes = 6;
                int _nodei = _src.index;
                _src.advance(1 * _nodes);
    
                if ( this.node == null ) {
                    if ( _nodes < 0 || _nodes > 0xFFFF )
                        throw new NdrException(NdrException.INVALID_CONFORMANCE);
                    this.node = new byte[_nodes];
                }
                _src = _src.derive(_nodei);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:40:13 GMT 2019
    - 8.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/NetbiosAddress.java

    
        /**
         * Checks the node type of this address.
         * 
         * @param tc
         *            context to use
         * @return {@link jcifs.netbios.NbtAddress#B_NODE},
         *         {@link jcifs.netbios.NbtAddress#P_NODE}, {@link jcifs.netbios.NbtAddress#M_NODE},
         *         {@link jcifs.netbios.NbtAddress#H_NODE}
         *
         * @throws UnknownHostException
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/dcerpc/rpc.java

                int _nodes = 6;
                int _nodei = _src.index;
                _src.advance(1 * _nodes);
    
                if (node == null) {
                    if (_nodes < 0 || _nodes > 0xFFFF) throw new NdrException( NdrException.INVALID_CONFORMANCE );
                    node = new byte[_nodes];
                }
                _src = _src.derive(_nodei);
                for (int _i = 0; _i < _nodes; _i++) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/netbios/NbtAddress.java

            checkData();
            return groupName;
        }
    
    /** 
     * Checks the node type of this address.
     * @return {@link jcifs.smb1.netbios.NbtAddress#B_NODE},
     * {@link jcifs.smb1.netbios.NbtAddress#P_NODE}, {@link jcifs.smb1.netbios.NbtAddress#M_NODE},
     * {@link jcifs.smb1.netbios.NbtAddress#H_NODE}
     *
     * @throws UnknownHostException if the host cannot be resolved to find out.
     */ 
    
    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)
  5. src/main/java/jcifs/dcerpc/UUID.java

            this.clock_seq_low = uuid.clock_seq_low;
            this.node = new byte[6];
            this.node[ 0 ] = uuid.node[ 0 ];
            this.node[ 1 ] = uuid.node[ 1 ];
            this.node[ 2 ] = uuid.node[ 2 ];
            this.node[ 3 ] = uuid.node[ 3 ];
            this.node[ 4 ] = uuid.node[ 4 ];
            this.node[ 5 ] = uuid.node[ 5 ];
        }
    
    
        /**
         * Construct a UUID from string
         * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/Trans2GetDfsReferralResponse.java

                    path = readString( buffer, start + pathOffset, len, (flags2 & FLAGS2_UNICODE) != 0);
                    if (nodeOffset > 0)
                        node = readString( buffer, start + nodeOffset, len, (flags2 & FLAGS2_UNICODE) != 0);
                } else if( version == 1 ) {
                    node = readString( buffer, bufferIndex, len, (flags2 & FLAGS2_UNICODE) != 0);
                }
    
                return size;
            }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/netbios/NodeStatusResponse.java

                    isPermanent      = (( src[srcIndex + 16] & 0x02 ) == 0x02 ) ? true : false;
        
        /* The NbtAddress object used to query this node will be in the list
         * returned by the Node Status. A new NbtAddress object should not be
         * created for it because the original is potentially being actively
         * referenced by other objects. We must populate the existing object's
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbTransport.java

                dr.expiration = expiration;
                if (path.equals("")) {
                    dr.server = resp.referrals[di].path.substring(1).toLowerCase();
                } else {
                    dfsPathSplit(resp.referrals[di].node, arr);
                    dr.server = arr[1];
                    dr.share = arr[2];
                    dr.path = arr[3];
                }
                dr.pathConsumed = resp.pathConsumed;
    
                di++;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 31.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java

                    }
                }
                if (domain_guid.node == null) {
                    if (_domain_guid_nodes < 0 || _domain_guid_nodes > 0xFFFF) throw new NdrException( NdrException.INVALID_CONFORMANCE );
                    domain_guid.node = new byte[_domain_guid_nodes];
                }
                _src = _src.derive(_domain_guid_nodei);
                for (int _i = 0; _i < _domain_guid_nodes; _i++) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 33K bytes
    - Viewed (0)
  10. src/main/java/jcifs/dcerpc/msrpc/lsarpc.java

                }
                if ( this.domain_guid.node == null ) {
                    if ( _domain_guid_nodes < 0 || _domain_guid_nodes > 0xFFFF )
                        throw new NdrException(NdrException.INVALID_CONFORMANCE);
                    this.domain_guid.node = new byte[_domain_guid_nodes];
                }
                _src = _src.derive(_domain_guid_nodei);
                for ( int _i = 0; _i < _domain_guid_nodes; _i++ ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:40:13 GMT 2019
    - 35.6K bytes
    - Viewed (0)
Back to top