Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 93 for Request (0.43 sec)

  1. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

        /*
         * These are all the smbs supported by this library. This includes requests
         * and well as their responses for each type however the actuall implementations
         * of the readXxxWireFormat and writeXxxWireFormat methods may not be in
         * place. For example at the time of this writing the readXxxWireFormat
         * for requests and the writeXxxWireFormat for responses are not implemented
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 32.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

            request.isBroadcast = request.addr == null;
    
            if( request.isBroadcast ) {
                request.addr = baddr;
                n = RETRY_COUNT;
            } else {
                request.isBroadcast = false;
                n = 1;
            }
    
            do {
                try {
                    send( request, response, RETRY_TIMEOUT );
                } catch( IOException ioe ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 17.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/netbios/SessionServicePacket.java

    import java.io.IOException;
    import java.io.InputStream;
    
    public abstract class SessionServicePacket { 
    
        // session service packet types 
        static final int SESSION_MESSAGE = 0x00; 
        static final int SESSION_REQUEST = 0x81; 
        public static final int POSITIVE_SESSION_RESPONSE = 0x82; 
        public static final int NEGATIVE_SESSION_RESPONSE = 0x83; 
        static final int SESSION_RETARGET_RESPONSE = 0x84; 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 4.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbSessionImpl.java

                    }
    
                    request.setSessionId(this.sessionId);
                    request.setUid(this.uid);
    
                    if ( request.getDigest() == null ) {
                        request.setDigest(getDigest());
                    }
    
                    if ( request instanceof RequestWithPath ) {
                        RequestWithPath rpath = (RequestWithPath) request;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbTreeConnection.java

                }
    
                if ( request != null ) {
                    log.debug("Restting request");
                    request.reset();
                }
                if ( rpath != null ) {
                    // resolveDfs() and tree.send() modify the request packet.
                    // I want to restore it before retrying. request.reset()
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 31K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbTree.java

                    default:
                        throw new SmbException( "Invalid operation for " + service + " service" + request );
                }
            }
            request.tid = tid;
            if( inDfs && !service.equals("IPC") && request.path != null && request.path.length() > 0 ) {
                /* When DFS is in action all request paths are
                 * full UNC paths minus the first backslash like
                 *   \server\share\path\to\file
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/Trans2FindFirst2.java

    package jcifs.smb1.smb1;
    
    import jcifs.smb1.Config;
    import jcifs.smb1.util.Hexdump;
    
    class Trans2FindFirst2 extends SmbComTransaction {
    
        // flags
    
        private static final int FLAGS_CLOSE_AFTER_THIS_REQUEST = 0x01;
        private static final int FLAGS_CLOSE_IF_END_REACHED     = 0x02;
        private static final int FLAGS_RETURN_RESUME_KEYS       = 0x04;
        private static final int FLAGS_RESUME_FROM_PREVIOUS_END = 0x08;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 4.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/netbios/NameServiceClientImpl.java

            request.isBroadcast = request.addr == null || isBroadcastAddress(request.addr);
    
            if ( request.isBroadcast ) {
                if ( request.addr == null ) {
                    request.addr = this.baddr;
                }
                n = config.getNetbiosRetryCount();
            }
            else {
                n = 1;
            }
    
            do {
                try {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbTransportInternal.java

    
        /**
         * @return whether this is a SMB2 connection
         * @throws SmbException
         */
        boolean isSMB2 () throws SmbException;
    
    
        /**
         * @return number of inflight requests
         */
        int getInflightRequests ();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/SmbNegotiation.java

            this.request = request;
            this.response = response;
            this.negoReqBuffer = negoReqBuffer;
            this.negoRespBuffer = negoRespBuffer;
        }
    
    
        /**
         * @return the request
         */
        public SmbNegotiationRequest getRequest () {
            return this.request;
        }
    
    
        /**
         * @return the response
         */
        public SmbNegotiationResponse getResponse () {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2K bytes
    - Viewed (0)
Back to top