Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 42 of 42 for sftp2 (0.05 sec)

  1. cmd/typed-errors.go

    var errSessionPolicyTooLarge = errors.New("Session policy should not exceed 2048 characters")
    
    // error returned in SFTP when user used public key without certificate
    var errSftpPublicKeyWithoutCert = errors.New("public key authentication without certificate is not accepted")
    
    // error returned in SFTP when user used certificate which does not contain principal(s)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. cmd/logging.go

    	logger.LogIf(ctx, "s3", err, errKind...)
    }
    
    func sftpLogOnceIf(ctx context.Context, err error, id string, errKind ...interface{}) {
    	logger.LogOnceIf(ctx, "sftp", err, id, errKind...)
    }
    
    func shutdownLogIf(ctx context.Context, err error, errKind ...interface{}) {
    	logger.LogIf(ctx, "shutdown", err, errKind...)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top