Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for UnixCredentials (0.17 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/sockcmsg_zos.go

    // license that can be found in the LICENSE file.
    
    // Socket control messages
    
    package unix
    
    import "unsafe"
    
    // UnixCredentials encodes credentials into a socket control message
    // for sending to another process. This can be used for
    // authentication.
    func UnixCredentials(ucred *Ucred) []byte {
    	b := make([]byte, CmsgSpace(SizeofUcred))
    	h := (*Cmsghdr)(unsafe.Pointer(&b[0]))
    	h.Level = SOL_SOCKET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Ucred", Type, 0},
    		{"Ucred.Gid", Field, 0},
    		{"Ucred.Pid", Field, 0},
    		{"Ucred.Uid", Field, 0},
    		{"Umask", Func, 0},
    		{"Uname", Func, 0},
    		{"Undelete", Func, 0},
    		{"UnixCredentials", Func, 0},
    		{"UnixRights", Func, 0},
    		{"Unlink", Func, 0},
    		{"Unlinkat", Func, 0},
    		{"UnmapViewOfFile", Func, 0},
    		{"Unmount", Func, 0},
    		{"Unsetenv", Func, 4},
    		{"Unshare", Func, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top