PLCnext API Documentation 25.0.2.69
PeerCredentials.hpp
1
2//
3// Copyright Phoenix Contact GmbH & Co. KG
4//
6#pragma once
8
9namespace Arp { namespace System { namespace Commons { namespace Ipc
10{
11
15{
17 int uid = -1;
19 int gid = -1;
21 int pid = -1;
22};
23
24}}}} //end of namespace Arp::System::Commons::Ipc
25
Root namespace for the PLCnext API
This struct holds credentials of a UnixDomainSocket Peer
Definition: PeerCredentials.hpp:15
int uid
identifier of the linux user that owns the process attached to the socket. -1 is Unix standard for er...
Definition: PeerCredentials.hpp:17
int pid
identifier of the process the socket is attached to. -1 is Unix standard for error or not avaliable
Definition: PeerCredentials.hpp:21
int gid
identifier of the primary group of the linux user that owns the process attached to the socket....
Definition: PeerCredentials.hpp:19