- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 170 for 0x90 (0.02 sec)
-
src/main/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDesc.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComNtTransaction.java
if (command != SMB_COM_NT_TRANSACT_SECONDARY) { dst[dstIndex++] = maxSetupCount; } else { dst[dstIndex++] = (byte)0x00; // Reserved } dst[dstIndex++] = (byte)0x00; // Reserved dst[dstIndex++] = (byte)0x00; // Reserved writeInt4( totalParameterCount, dst, dstIndex ); dstIndex += 4; writeInt4( totalDataCount, dst, dstIndex );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/TransCallNamedPipe.java
maxDataCount = 0xFFFF; maxSetupCount = (byte)0x00; setupCount = 2; } int writeSetupWireFormat( byte[] dst, int dstIndex ) { dst[dstIndex++] = subCommand; dst[dstIndex++] = (byte)0x00; // this says "Transaction priority" in netmon dst[dstIndex++] = (byte)0x00; // no FID dst[dstIndex++] = (byte)0x00; return 4; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.6K bytes - Viewed (0) -
guava/src/com/google/common/net/InetAddresses.java
* @return {@code true} if the argument is a 6to4 address */ public static boolean is6to4Address(Inet6Address ip) { byte[] bytes = ip.getAddress(); return (bytes[0] == (byte) 0x20) && (bytes[1] == (byte) 0x02); } /** * Returns the IPv4 address embedded in a 6to4 address. * * @param ip {@link Inet6Address} to be examined for embedded IPv4 in 6to4 address
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 47.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransaction.java
dst[ dstIndex++ ] = this.maxSetupCount; } else { dst[ dstIndex++ ] = (byte) 0x00; // Reserved } dst[ dstIndex++ ] = (byte) 0x00; // Reserved dst[ dstIndex++ ] = (byte) 0x00; // Reserved SMBUtil.writeInt4(this.totalParameterCount, dst, dstIndex); dstIndex += 4; SMBUtil.writeInt4(this.totalDataCount, dst, dstIndex);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun May 17 13:43:42 UTC 2020 - 3.9K bytes - Viewed (0) -
src/main/java/jcifs/util/Strings.java
*/ public static int findUNITermination ( byte[] buffer, int bufferIndex, int maxLen ) { int len = 0; while ( buffer[ bufferIndex + len ] != (byte) 0x00 || buffer[ bufferIndex + len + 1 ] != (byte) 0x00 ) { len += 2; if ( len > maxLen ) { if ( log.isDebugEnabled() ) { log.warn("Failed to find string termination with max length " + maxLen);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 4.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtTransQuerySecurityDesc.java
maxSetupCount = (byte)0x00; } int writeSetupWireFormat( byte[] dst, int dstIndex ) { return 0; } int writeParametersWireFormat( byte[] dst, int dstIndex ) { int start = dstIndex; writeInt2( fid, dst, dstIndex ); dstIndex += 2; dst[dstIndex++] = (byte)0x00; // Reserved dst[dstIndex++] = (byte)0x00; // Reserved
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndX.java
} else { // no password in tree connect this.passwordLength = 1; } dst[ dstIndex++ ] = this.disconnectTid ? (byte) 0x01 : (byte) 0x00; dst[ dstIndex++ ] = (byte) 0x00; SMBUtil.writeInt2(this.passwordLength, dst, dstIndex); return 4; } @SuppressWarnings ( "deprecation" )
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6.6K bytes - Viewed (0) -
cmd/tier-last-day-stats_gen.go
err = zb0008.Bins[zb0009].EncodeMsg(en) if err != nil { err = msgp.WrapError(err, zb0007, "Bins", zb0009) return } } // write "UpdatedAt" err = en.Append(0xa9, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74) if err != nil { return } err = en.WriteTime(zb0008.UpdatedAt) if err != nil { err = msgp.WrapError(err, zb0007, "UpdatedAt") return } }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Mar 21 17:21:35 UTC 2024 - 9.3K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NodeStatusRequest.java
this.isBroadcast = false; } @Override int writeBodyWireFormat ( byte[] dst, int dstIndex ) { int tmp = this.questionName.hexCode; this.questionName.hexCode = 0x00; // type has to be 0x00 for node status int result = writeQuestionSectionWireFormat(dst, dstIndex); this.questionName.hexCode = tmp; return result; } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.9K bytes - Viewed (0)