Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for RETAIN_PAYLOAD (0.21 sec)

  1. src/test/java/jcifs/smb/RequestParamTest.java

                    values, "values() order should match declaration order");
        }
    
        // Happy path: valueOf resolves each constant name; toString equals name; ordinal is stable
        @ParameterizedTest
        @ValueSource(strings = { "NONE", "NO_TIMEOUT", "NO_RETRY", "RETAIN_PAYLOAD" })
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/RequestParam.java

         */
        NO_TIMEOUT,
    
        /**
         * Do not retry request on failure
         */
        NO_RETRY,
    
        /**
         * Save the raw payload for further inspection
         */
        RETAIN_PAYLOAD
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbSessionImpl.java

                    request.setSessionId(sessId);
                    request.retainPayload();
    
                    try {
                        response = trans.send(request, null, EnumSet.of(RequestParam.RETAIN_PAYLOAD));
                        sessId = response.getSessionId();
                    } catch (SmbAuthException sae) {
                        throw sae;
                    } catch (SmbException e) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 68.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/util/transport/Transport.java

            Response curResp = response;
            Request curReq = request;
            long firstKey = 0;
            while (curResp != null) {
                curResp.reset();
    
                if (params.contains(RequestParam.RETAIN_PAYLOAD)) {
                    curResp.retainPayload();
                }
    
                final long k = makeKey(curReq);
    
                if (firstKey == 0) {
                    firstKey = k;
                }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 27.8K bytes
    - Viewed (0)
Back to top