- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 95 for SmbException (0.12 sec)
-
src/main/java/jcifs/smb/SmbPipeHandleImpl.java
} @Override public synchronized SmbFileHandleImpl ensureOpen () throws CIFSException { if ( !this.open ) { throw new SmbException("Pipe handle already closed"); } if ( !isOpen() ) { try ( SmbTreeHandleImpl th = ensureTreeConnected() ) { if ( th.isSMB2() ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Apr 13 17:05:22 UTC 2020 - 10.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbAuthException.java
* <p> * See <a href="../../../authhandler.html">jCIFS Exceptions and NtlmAuthenticator</a> for more information about <code>SmbAuthException</code>. */ public class SmbAuthException extends SmbException { SmbAuthException( int errcode ) { super( errcode, null ); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 1.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/DfsReferral.java
*/ package jcifs.smb; import jcifs.DfsReferralData; /** * * @author mbechler * * @internal */ @SuppressWarnings ( "javadoc" ) public class DfsReferral extends SmbException { /** * */ private static final long serialVersionUID = 1486630733410281686L; private final DfsReferralData data; /** * @param dr */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SID.java
* <tt>S-1-5-21-1496946806-2192648263-3843101252-1029</tt>. */ public SID(String textual) throws SmbException { StringTokenizer st = new StringTokenizer(textual, "-"); if (st.countTokens() < 3 || !st.nextToken().equals("S")) // need S-N-M throw new SmbException("Bad textual SID format: " + textual); this.revision = Byte.parseByte(st.nextToken());
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 26.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java
this.signSequence = initialSequence; } /** * * @param transport * @param auth * @throws SmbException */ public SMB1SigningDigest ( SmbTransportInternal transport, NtlmPasswordAuthenticator auth ) throws SmbException { this.digest = Crypto.getMD5(); try { byte[] serverEncryptionKey = transport.getServerEncryptionKey();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 09:45:59 UTC 2018 - 10.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/Kerb5Authenticator.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 13K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbPipeOutputStream.java
/** * @author mbechler * */ public class SmbPipeOutputStream extends SmbFileOutputStream { private SmbPipeHandleImpl handle; /** * @param handle * @throws SmbException */ SmbPipeOutputStream ( SmbPipeHandleImpl handle, SmbTreeHandleImpl th ) throws CIFSException { super(handle.getPipe(), th, null, 0, 0, 0); this.handle = handle; } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbPipeInputStream.java
/** * @author mbechler * */ public class SmbPipeInputStream extends SmbFileInputStream { private SmbPipeHandleImpl handle; /** * @param handle * @param th * @throws SmbException */ SmbPipeInputStream ( SmbPipeHandleImpl handle, SmbTreeHandleImpl th ) throws CIFSException { super(handle.getPipe(), th, null); this.handle = handle; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 07:12:23 UTC 2018 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/DosFileFilter.java
* specified the server may still return objects that are not directories). */ @Override public boolean accept ( SmbFile file ) throws SmbException { return ( file.getAttributes() & this.attributes ) != 0; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java
*/ return new byte[0]; default: return getNTLMResponse( password, challenge ); } } public byte[] getSigningKey(byte[] challenge) throws SmbException { switch (LM_COMPATIBILITY) { case 0: case 1: case 2: byte[] signingKey = new byte[40];
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 22.5K bytes - Viewed (0)