Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 90 for response (0.28 sec)

  1. src/main/java/jcifs/util/transport/Response.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.util.transport;
    
    
    /**
     *
     */
    public interface Response extends Message {
    
        /**
         * 
         * @return whether the response is received
         */
        boolean isReceived ();
    
    
        /**
         * Set received status
         */
        void received ();
    
    
        /**
         * Unset received status
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/util/transport/Response.java

    package jcifs.smb1.util.transport;
    
    public abstract class Response {
        public long expiration;
        public boolean isReceived;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 130 bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/util/transport/Transport.java

                        Response response,
                        long timeout ) throws IOException {
                makeKey( request );
                response.isReceived = false;
                try {
                    response_map.put( request, response );
                    doSend( request );
                    response.expiration = System.currentTimeMillis() + timeout;
                    while (!response.isReceived) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/util/transport/Transport.java

                                for ( Response response : this.response_map.values() ) {
                                    response.error();
                                }
                            }
                            throw new IOException("end of stream");
                        }
    
                        Response response = this.response_map.get(key);
                        if ( response == null ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Nov 01 18:12:21 GMT 2020
    - 24.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/DirFileEntryEnumIterator1.java

                        th.getConfig().getListSize() - FIND_OVERHEAD),
                    this.response);
    
                this.nextRequest = new Trans2FindNext2(
                    th.getConfig(),
                    this.response.getSid(),
                    this.response.getResumeKey(),
                    this.response.getLastName(),
                    th.getConfig().getListCount(),
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Nov 13 15:13:49 GMT 2021
    - 5.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

        }
    
        private int parseResponseCode() throws IOException {
            try {
                String response = connection.getHeaderField(0);
                int index = response.indexOf(' ');
                while (response.charAt(index) == ' ') index++;
                return Integer.parseInt(response.substring(index, index + 3));
            } catch (Exception ex) {
                throw new IOException(ex.getMessage());
            }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 20.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/Request.java

     * @author mbechler
     * @param <T>
     *            response type
     *
     */
    public interface Request <T extends CommonServerMessageBlockResponse> extends CommonServerMessageBlockRequest {
    
        /**
         * 
         * @param tc
         * @return the initialized response
         * @internal
         */
        public T initResponse ( CIFSContext tc );
    
    
        /**
         * 
         * @return the response message
         */
        @Override
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/util/transport/Request.java

         */
        boolean isCancel ();
    
    
        /**
         * @return chained request
         */
        Request getNext ();
    
    
        /**
         * @return the response for this request
         */
        Response getResponse ();
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/netbios/SessionServicePacket.java

        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;
        static final int SESSION_KEEP_ALIVE = 0x85;
    
        static final int MAX_MESSAGE_SIZE = 0x0001FFFF;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/http/NtlmSsp.java

                    byte[] lmResponse = type3.getLMResponse();
                    if (lmResponse == null) lmResponse = new byte[0];
                    byte[] ntResponse = type3.getNTResponse();
                    if (ntResponse == null) ntResponse = new byte[0];
                    return new NtlmPasswordAuthentication(type3.getDomain(),
                            type3.getUser(), challenge, lmResponse, ntResponse);
                }
            } else {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 4.4K bytes
    - Viewed (1)
Back to top