Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for nide (0.14 sec)

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

                _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);
                for ( int _i = 0; _i < _nodes; _i++ ) {
                    this.node[ _i ] = (byte) _src.dec_ndr_small();
                }
            }
    Java
    - Registered: Sun Apr 28 00:10:09 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 Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  3. src/test/java/jcifs/tests/PACTest.java

            verifyArcfourHMAC(17, expect, data, key);
        }
    
    
    
        @Test
        public void testAES128Checksum () throws GeneralSecurityException {
            String data = "eight nine ten eleven twelve thirteen";
            String key = "9062430C8CDA3388922E6D6A509F5B7A";
            String expect = "01A4B088D45628F6946614E3";
            verifyAESHMAC(3, expect, key, data.getBytes(StandardCharsets.US_ASCII));
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Oct 01 12:01:17 GMT 2023
    - 22.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/dcerpc/UUID.java

            clock_seq_hi_and_reserved = uuid.clock_seq_hi_and_reserved;
            clock_seq_low = uuid.clock_seq_low;
            node = new byte[6];
            node[0] = uuid.node[0];
            node[1] = uuid.node[1];
            node[2] = uuid.node[2];
            node[3] = uuid.node[3];
            node[4] = uuid.node[4];
            node[5] = uuid.node[5];
        }
        public UUID(String str) {
            char[] arr = str.toCharArray();
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 4.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                    log.info("Failed to send node status request for " + addr, ioe);
                    throw new UnknownHostException(addr.toString());
                }
                if ( response.received && response.resultCode == 0 ) {
    
                    /*
                     * For name queries resolved by different sources (e.g. WINS,
                     * BCAST, Node Status) we need to augment the hashcode generated
    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)
  6. src/main/java/jcifs/dcerpc/rpc.idl

    	/* dce */
    
    	typedef struct {
    	    uint32_t time_low;
    	    uint16_t time_mid;
    	    uint16_t time_hi_and_version;
    	    uint8_t clock_seq_hi_and_reserved;
    	    uint8_t clock_seq_low;
    	    uint8_t node[6];
    	} uuid_t;
    
    	/* win32 stuff */
    
    	typedef struct {
    		uint32_t type;
    		uuid_t uuid;
    	} policy_handle;
    
    	/*
    	 * typedef struct _UNICODE_STRING
    	 *     USHORT Length;
    Others
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                            request.nameTrnId = getNextNameTrnId();
                            nid = new Integer( request.nameTrnId );
    
                            out.setAddress( request.addr );
                            out.setLength( request.writeWireFormat( snd_buf, 0 ));
                            response.received = false;
    
                            responseTable.put( nid, response );
                            ensureOpen( timeout + 1000 );
    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)
  8. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java

                        dns_forest.buffer[_i] = (short)_src.dec_ndr_short();
                    }
                }
                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);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 33K bytes
    - Viewed (0)
  9. 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);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:40:13 GMT 2019
    - 35.6K bytes
    - Viewed (0)
  10. src/test/java/jcifs/tests/SessionTest.java

                  SmbTransport t2 = sess2.getTransport() ) {
    
                Assert.assertEquals(t1, t2);
            }
    
        }
    
    
        // this test is meant to test server-side session invalidation behavior
        // and not part of the regular test suite as manual steps are required
        //@Test
        public void testSessionMaintenance () throws IOException, InterruptedException {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 15.8K bytes
    - Viewed (0)
Back to top