Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for transform (0.14 sec)

  1. src/main/java/jcifs/SmbTransport.java

     */
    package jcifs;
    
    
    /**
     * Opaque reference to a SMB transport
     * 
     * @author mbechler
     * @internal
     */
    public interface SmbTransport extends AutoCloseable {
    
        /**
         * @return the context this transport is attached to
         */
        CIFSContext getContext ();
    
    
        /**
         * 
         * @param type
         * @return transport instance with the given type
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbTransport.java

    import java.util.*;
    
    import jcifs.smb1.*;
    import jcifs.smb1.dcerpc.*;
    import jcifs.smb1.dcerpc.msrpc.*;
    import jcifs.smb1.netbios.*;
    import jcifs.smb1.util.*;
    import jcifs.smb1.util.transport.*;
    
    public class SmbTransport extends Transport implements SmbConstants {
    
        static final byte[] BUF = new byte[0xFFFF];
        static final SmbComNegotiate NEGOTIATE_REQUEST = new SmbComNegotiate();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 31.2K bytes
    - Viewed (0)
Back to top