Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for rx_bytes (0.04 sec)

  1. src/main/java/jcifs/smb/SmbSessionImpl.java

                        }
                    }
    
                    if (preauthIntegrity) {
                        byte[] reqBytes = request.getRawPayload();
                        this.preauthIntegrityHash = trans.calculatePreauthHash(reqBytes, 0, reqBytes.length, this.preauthIntegrityHash);
    
                        if (response.getStatus() == NtStatus.NT_STATUS_MORE_PROCESSING_REQUIRED) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 68.9K bytes
    - Viewed (0)
  2. cmd/admin-handlers-users.go

    		return
    	}
    
    	password := cred.SecretKey
    	reqBytes, err := madmin.DecryptData(password, io.LimitReader(r.Body, r.ContentLength))
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErrWithErr(ErrAdminConfigBadJSON, err), r.URL)
    		return
    	}
    
    	var updateReq madmin.UpdateServiceAccountReq
    	if err = json.Unmarshal(reqBytes, &updateReq); err != nil {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 90.6K bytes
    - Viewed (0)
Back to top