Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for recordType (0.15 sec)

  1. src/main/java/jcifs/netbios/NameServicePacket.java

        boolean received, isResponse, isAuthAnswer, isTruncated, isRecurDesired, isRecurAvailable, isBroadcast;
    
        Name questionName;
        Name recordName;
    
        int questionType, questionClass, recordType, recordClass, ttl, rDataLength;
    
        InetAddress addr;
        protected Configuration config;
    
    
        NameServicePacket ( Configuration config ) {
            this.config = config;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 12K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/NameServicePacket.java

                isRecurDesired,
                isRecurAvailable,
                isBroadcast;
    
        Name questionName;
        Name recordName;
    
        int questionType,
                questionClass,
                recordType,
                recordClass,
                ttl,
                rDataLength;
    
        InetAddress addr;
    
        NameServicePacket() {
            isRecurDesired = true;
            isBroadcast = true;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 12.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                             * loop around and try again.
                             */
                            if (response.received && request.questionType == response.recordType)
                                return;
    
                            response.received = false;
                            timeout -= System.currentTimeMillis() - start;
                        }
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 17.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                             * loop around and try again.
                             */
                            if ( response.received && request.questionType == response.recordType )
                                return;
    
                            response.received = false;
                            timeout -= System.currentTimeMillis() - start;
                        }
    
                    }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Aug 14 14:26:22 UTC 2022
    - 38.2K bytes
    - Viewed (0)
Back to top