2021-03-14 00:46:29 +01:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <limits.h>
|
|
|
|
|
2021-03-16 20:17:27 +01:00
|
|
|
#include "pep-server.h"
|
|
|
|
|
2021-10-24 00:07:23 +02:00
|
|
|
pEp::Server::Server(DBus::Connection &connection) :
|
|
|
|
DBus::ObjectAdaptor(connection, "/security/pep"),
|
|
|
|
pEpDBusAdapter()
|
2021-03-14 00:46:29 +01:00
|
|
|
{
|
|
|
|
}
|
2021-03-16 20:17:27 +01:00
|
|
|
pEp::Server::~Server()
|
2021-10-24 00:07:23 +02:00
|
|
|
{}
|
2021-03-14 00:46:29 +01:00
|
|
|
|
2021-03-14 02:23:48 +01:00
|
|
|
|