diff options
Diffstat (limited to 'src/CommonAPI/DBus/DBusClientId.cpp')
-rw-r--r-- | src/CommonAPI/DBus/DBusClientId.cpp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/CommonAPI/DBus/DBusClientId.cpp b/src/CommonAPI/DBus/DBusClientId.cpp index 12983b5..d6dcbc5 100644 --- a/src/CommonAPI/DBus/DBusClientId.cpp +++ b/src/CommonAPI/DBus/DBusClientId.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2013-2017 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) +// Copyright (C) 2013-2020 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. @@ -58,5 +58,13 @@ DBusMessage DBusClientId::createMessage(const std::string objectPath, const std: return(returnMessage); } +uid_t DBusClientId::getUid() const { + return (0); +} + +gid_t DBusClientId::getGid() const { + return (0); +} + } // namespace DBus } // namespace CommonAPI |