Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for 15 (0.12 sec)

  1. src/main/java/jcifs/smb1/UniAddress.java

                    calledName = NbtAddress.SMBSERVER_NAME;
                } else {
                    int i = calledName.indexOf( '.' );
                    if( i > 1 && i < 15 ) {
                        calledName = calledName.substring( 0, i ).toUpperCase();
                    } else if( calledName.length() > 15 ) {
                        calledName = NbtAddress.SMBSERVER_NAME;
                    } else {
                        calledName = calledName.toUpperCase();
    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)
  2. src/main/java/jcifs/netbios/UniAddress.java

            }
            else {
                int i = this.calledName.indexOf('.');
                if ( i > 1 && i < 15 ) {
                    this.calledName = this.calledName.substring(0, i).toUpperCase();
                }
                else if ( this.calledName.length() > 15 ) {
                    this.calledName = NbtAddress.SMBSERVER_NAME;
                }
                else {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/util/DES.java

        private static int[] totrot = {
            1, 2, 4, 6, 8, 10, 12, 14, 15, 17, 19, 21, 23, 25, 27, 28
        };
    
        private static byte[] pc2 = {
            (byte)13, (byte)16, (byte)10, (byte)23, (byte) 0, (byte) 4,
            (byte) 2, (byte)27, (byte)14, (byte) 5, (byte)20, (byte) 9,
            (byte)22, (byte)18, (byte)11, (byte)3 , (byte)25, (byte) 7,
            (byte)15, (byte) 6, (byte)26, (byte)19, (byte)12, (byte) 1,
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 21.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/NodeStatusResponse.java

                for ( j = srcIndex + 14; src[ j ] == 0x20; j-- );
                n = Strings.fromOEMBytes(src, srcIndex, j - srcIndex + 1, this.config);
                hexCode = src[ srcIndex + 15 ] & 0xFF;
                groupName = ( ( src[ srcIndex + 16 ] & 0x80 ) == 0x80 ) ? true : false;
                ownerNodeType = ( src[ srcIndex + 16 ] & 0x60 ) >> 5;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/ntlmssp/NtlmMessage.java

        };
    
        /**
         * NTLM version
         */
        protected static final byte[] NTLMSSP_VERSION = new byte[] {
            6, 1, 0, 0, 0, 0, 0, 15
        };
    
        protected static final int NTLMSSP_TYPE1 = 0x1;
        protected static final int NTLMSSP_TYPE2 = 0x2;
        protected static final int NTLMSSP_TYPE3 = 0x3;
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                            lmaddr
                        };
                        break;
                    case RESOLVER_WINS:
                        if ( hostname.equals(NbtAddress.MASTER_BROWSER_NAME) || hostname.length() > 15 ) {
                            // invalid netbios name
                            continue;
                        }
                        if ( possibleNTDomainOrWorkgroup ) {
    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)
  7. src/main/java/jcifs/netbios/NbtAddress.java

     * Samba or WINS. NetBIOS is currently the primary networking layer for
     * providing name service, datagram service, and session service to the
     * Microsoft Windows platform. A NetBIOS name can be 15 characters long
     * and hosts usually registers several names on the network. From a
     * Windows command prompt you can see
     * what names a host registers with the nbtstat command.
     * <p>
     * <blockquote>
     * 
     * <pre>
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 15.2K bytes
    - Viewed (0)
Back to top