jcifs.smb.SmbComTreeConnectAndXResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcifs Show documentation
Show all versions of jcifs Show documentation
JCIFS is an Open Source client library that implements the CIFS/SMB networking protocol in 100% Java
/* jcifs smb client library in Java
* Copyright (C) 2000 "Michael B. Allen"
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package jcifs.smb;
import java.io.UnsupportedEncodingException;
class SmbComTreeConnectAndXResponse extends AndXServerMessageBlock {
private static final int SMB_SUPPORT_SEARCH_BITS = 0x0001;
private static final int SMB_SHARE_IS_IN_DFS = 0x0002;
boolean supportSearchBits, shareIsInDfs;
String service, nativeFileSystem = "";
SmbComTreeConnectAndXResponse( ServerMessageBlock andx ) {
super( andx );
}
int writeParameterWordsWireFormat( byte[] dst, int dstIndex ) {
return 0;
}
int writeBytesWireFormat( byte[] dst, int dstIndex ) {
return 0;
}
int readParameterWordsWireFormat( byte[] buffer, int bufferIndex ) {
supportSearchBits = ( buffer[bufferIndex] & SMB_SUPPORT_SEARCH_BITS ) == SMB_SUPPORT_SEARCH_BITS;
shareIsInDfs = ( buffer[bufferIndex] & SMB_SHARE_IS_IN_DFS ) == SMB_SHARE_IS_IN_DFS;
return 2;
}
int readBytesWireFormat( byte[] buffer, int bufferIndex ) {
int start = bufferIndex;
int len = readStringLength( buffer, bufferIndex, 32 );
try {
service = new String( buffer, bufferIndex, len, "ASCII" );
} catch( UnsupportedEncodingException uee ) {
return 0;
}
bufferIndex += len + 1;
// win98 observed not returning nativeFileSystem
/* Problems here with iSeries returning ASCII even though useUnicode = true
* Fortunately we don't really need nativeFileSystem for anything.
if( byteCount > bufferIndex - start ) {
nativeFileSystem = readString( buffer, bufferIndex );
bufferIndex += stringWireLength( nativeFileSystem, bufferIndex );
}
*/
return bufferIndex - start;
}
public String toString() {
String result = new String( "SmbComTreeConnectAndXResponse[" +
super.toString() +
",supportSearchBits=" + supportSearchBits +
",shareIsInDfs=" + shareIsInDfs +
",service=" + service +
",nativeFileSystem=" + nativeFileSystem + "]" );
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy