- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 542 for smb1 (0.05 sec)
-
src/main/java/jcifs/DialectVersion.java
import java.util.EnumSet; import java.util.Set; import jcifs.internal.smb2.Smb2Constants; /** * @author mbechler * */ public enum DialectVersion { /** * Legacy SMB1/CIFS */ SMB1, /** * SMB 2.02 - Windows Vista+ */ SMB202(Smb2Constants.SMB2_DIALECT_0202), /** * SMB 2.1 - Windows 7/Server 2008R2 */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NetServerEnum2Response.java
* 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.smb1.smb1; import java.io.InputStream; import jcifs.smb1.util.Hexdump; import java.io.IOException; class NetServerEnum2Response extends SmbComTransactionResponse { class ServerInfo1 implements FileEntry { String name;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 4.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/MimeMap.java
InputStream is = getClass().getClassLoader().getResourceAsStream( "jcifs/smb1/util/mime.map" ); inLen = 0; while(( n = is.read( in, inLen, IN_SIZE - inLen )) != -1 ) { inLen += n; } if( inLen < 100 || inLen == IN_SIZE ) { throw new IOException( "Error reading jcifs/smb1/util/mime.map resource" ); } is.close(); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 4.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComNTCreateAndXResponse.java
* 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.smb1.smb1; import java.util.Date; import jcifs.smb1.util.Hexdump; class SmbComNTCreateAndXResponse extends AndXServerMessageBlock { static final int EXCLUSIVE_OPLOCK_GRANTED = 1; static final int BATCH_OPLOCK_GRANTED = 2;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 3.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComBlankResponse.java
* 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.smb1.smb1; class SmbComBlankResponse extends ServerMessageBlock { SmbComBlankResponse() { } int writeParameterWordsWireFormat( byte[] dst, int dstIndex ) { return 0; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 1.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComTreeDisconnect.java
* 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.smb1.smb1; class SmbComTreeDisconnect extends ServerMessageBlock { SmbComTreeDisconnect() { command = SMB_COM_TREE_DISCONNECT; } int writeParameterWordsWireFormat( byte[] dst, int dstIndex ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 1.5K bytes - Viewed (0) -
src/test/java/jcifs/tests/ContextConfigTest.java
Properties prop1 = new Properties(); prop1.setProperty("jcifs.smb.client.enableSMB2", "false"); prop1.setProperty("jcifs.smb.client.disableSMB1", "false"); PropertyConfiguration p1 = new PropertyConfiguration(prop1); assertEquals(DialectVersion.SMB1, p1.getMinimumVersion()); assertEquals(DialectVersion.SMB1, p1.getMaximumVersion()); Properties prop2 = new Properties();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 9.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFilenameFilter.java
* 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.smb1.smb1; public interface SmbFilenameFilter { public boolean accept( SmbFile dir, String name ) throws SmbException;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 990 bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
import jcifs.internal.smb1.com.SmbComQueryInformationResponse; import jcifs.internal.smb1.com.SmbComRename; import jcifs.internal.smb1.com.SmbComSeek; import jcifs.internal.smb1.com.SmbComSeekResponse; import jcifs.internal.smb1.com.SmbComSetInformation; import jcifs.internal.smb1.com.SmbComSetInformationResponse; import jcifs.internal.smb1.trans.nt.NtTransQuerySecurityDesc;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu May 23 01:50:13 UTC 2024 - 82.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComQueryInformation.java
* 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.smb1.smb1; class SmbComQueryInformation extends ServerMessageBlock { SmbComQueryInformation( String filename ) { path = filename; command = SMB_COM_QUERY_INFORMATION; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 1.7K bytes - Viewed (0)