Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for SessionId (0.18 sec)

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

        private boolean extendedSecurity;
    
        private final AtomicLong usageCount = new AtomicLong(1);
        private final AtomicBoolean transportAcquired = new AtomicBoolean(true);
    
        private long sessionId;
    
        private SMBSigningDigest digest;
    
        private final String targetDomain;
        private final String targetHost;
    
        private byte[] preauthIntegrityHash;
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_messages.go

    	return &clientHelloMsg{
    		original:                         slices.Clone(m.original),
    		vers:                             m.vers,
    		random:                           slices.Clone(m.random),
    		sessionId:                        slices.Clone(m.sessionId),
    		cipherSuites:                     slices.Clone(m.cipherSuites),
    		compressionMethods:               slices.Clone(m.compressionMethods),
    		serverName:                       m.serverName,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	WTSListen       = 6
    	WTSReset        = 7
    	WTSDown         = 8
    	WTSInit         = 9
    )
    
    type WTSSESSION_NOTIFICATION struct {
    	Size      uint32
    	SessionID uint32
    }
    
    type WTS_SESSION_INFO struct {
    	SessionID         uint32
    	WindowStationName *uint16
    	State             uint32
    }
    
    //sys WTSQueryUserToken(session uint32, token *Token) (err error) = wtsapi32.WTSQueryUserToken
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. src/crypto/tls/common.go

    // implementations should expect to be called concurrently from different
    // goroutines. Up to TLS 1.2, only ticket-based resumption is supported, not
    // SessionID-based resumption. In TLS 1.3 they were merged into PSK modes, which
    // are supported via this interface.
    type ClientSessionCache interface {
    	// Get searches for a ClientSessionState associated with the given key.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	GetCurrentProcessId() (pid uint32) = kernel32.GetCurrentProcessId
    //sys	ProcessIdToSessionId(pid uint32, sessionid *uint32) (err error) = kernel32.ProcessIdToSessionId
    //sys	ClosePseudoConsole(console Handle) = kernel32.ClosePseudoConsole
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top