Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for readNodeNameArray (0.89 sec)

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

            System.arraycopy(src, srcIndex + namesLength, macAddress, 0, 6);
            srcIndex += readNodeNameArray(src, srcIndex);
            stats = new byte[statsLength];
            System.arraycopy(src, srcIndex, stats, 0, statsLength);
            srcIndex += statsLength;
            return srcIndex - start;
        }
    
        private int readNodeNameArray(final byte[] src, int srcIndex) {
            final int start = srcIndex;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NodeStatusResponse.java

            System.arraycopy(src, srcIndex + namesLength, this.macAddress, 0, 6);
            srcIndex += readNodeNameArray(src, srcIndex);
            this.stats = new byte[statsLength];
            System.arraycopy(src, srcIndex, this.stats, 0, statsLength);
            srcIndex += statsLength;
            return srcIndex - start;
        }
    
        private int readNodeNameArray(final byte[] src, int srcIndex) {
            final int start = srcIndex;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/netbios/NbtAddress.java

                final boolean isInConflict, final boolean isActive, final boolean isPermanent, final byte[] macAddress) {
    
            /*
             * The NodeStatusResponse.readNodeNameArray method may also set this
             * information. These two places where node status data is populated should
             * be consistent. Be carefull!
             */
            this.hostName = hostName;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/netbios/NbtAddress.java

                final boolean isInConflict, final boolean isActive, final boolean isPermanent, final byte[] macAddress) {
    
            /* The NodeStatusResponse.readNodeNameArray method may also set this
             * information. These two places where node status data is populated should
             * be consistent. Be carefull!
             */
            this.hostName = hostName;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.7K bytes
    - Viewed (0)
Back to top