Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Smb2EchoResponse (0.06 sec)

  1. src/main/java/jcifs/internal/smb2/Smb2EchoResponse.java

     * and the connection is working properly.
     *
     * @author mbechler
     */
    public class Smb2EchoResponse extends ServerMessageBlock2Response {
    
        /**
         * Constructs an SMB2 echo response
         * @param config the client configuration
         */
        public Smb2EchoResponse(final Configuration config) {
            super(config);
        }
    
        /**
         * {@inheritDoc}
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/Smb2EchoRequest.java

        /**
         * Constructs an SMB2 echo request
         * @param config the client configuration
         */
        public Smb2EchoRequest(final Configuration config) {
            super(config, SMB2_ECHO);
        }
    
        @Override
        protected Smb2EchoResponse createResponse(final CIFSContext tc, final ServerMessageBlock2Request<Smb2EchoResponse> req) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.3K bytes
    - Viewed (0)
Back to top