Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SecurityAnonymous (0.27 sec)

  1. src/internal/syscall/windows/security_windows.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package windows
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    const (
    	SecurityAnonymous      = 0
    	SecurityIdentification = 1
    	SecurityImpersonation  = 2
    	SecurityDelegation     = 3
    )
    
    //sys	ImpersonateSelf(impersonationlevel uint32) (err error) = advapi32.ImpersonateSelf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 07:21:38 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    )
    
    // Token types
    const (
    	TokenPrimary       = 1
    	TokenImpersonation = 2
    )
    
    // Impersonation levels
    const (
    	SecurityAnonymous      = 0
    	SecurityIdentification = 1
    	SecurityImpersonation  = 2
    	SecurityDelegation     = 3
    )
    
    type LUID struct {
    	LowPart  uint32
    	HighPart int32
    }
    
    type LUIDAndAttributes struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	PIPE_REJECT_REMOTE_CLIENTS = 0x8
    
    	PIPE_UNLIMITED_INSTANCES = 255
    )
    
    // Constants for security attributes when opening named pipes.
    const (
    	SECURITY_ANONYMOUS      = SecurityAnonymous << 16
    	SECURITY_IDENTIFICATION = SecurityIdentification << 16
    	SECURITY_IMPERSONATION  = SecurityImpersonation << 16
    	SECURITY_DELEGATION     = SecurityDelegation << 16
    
    	SECURITY_CONTEXT_TRACKING = 0x40000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
Back to top