Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for remoteAddress (0.05 sec)

  1. docs/smb3-features/05-rdma-smb-direct-design.md

                                     long remoteAddress, 
                                     int remoteKey,
                                     int length) throws IOException;
        
        /**
         * Perform RDMA write operation
         */
        public abstract void rdmaWrite(RdmaMemoryRegion localRegion,
                                      long remoteAddress,
                                      int remoteKey,
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 35.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/rdma/disni/DisniRdmaConnection.java

            try {
                // In real implementation, this would establish the RDMA connection:
                // endpoint.connect(remoteAddress, 1000);  // 1 second timeout
    
                state = RdmaConnectionState.CONNECTED;
                log.debug("DiSNI RDMA connection established to {}", remoteAddress);
    
            } catch (Exception e) {
                state = RdmaConnectionState.ERROR;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/audit/SecurityAuditLogger.java

            String maskedAddress = maskSensitiveData ? maskIpAddress(remoteAddress) : remoteAddress;
    
            Map<String, Object> context = getContextMap();
            context.put("username", maskedUsername);
            context.put("remoteAddress", maskedAddress);
            context.put("authMethod", authMethod);
            context.put("success", success);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/MultiChannelManager.java

            public ChannelInfo(String channelId, InetAddress localAddress, InetAddress remoteAddress, NetworkInterface networkInterface,
                    SmbTransportImpl transport) {
                this.channelId = channelId;
                this.localAddress = localAddress;
                this.remoteAddress = remoteAddress;
                this.networkInterface = networkInterface;
                this.transport = transport;
            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 20.5K bytes
    - Viewed (0)
Back to top