summaryrefslogtreecommitdiff
path: root/dbus
diff options
context:
space:
mode:
authorRadoslaw Pajak <r.pajak@samsung.com>2013-10-23 15:53:01 +0200
committerLubomir Rintel <lkundrak@v3.sk>2015-02-11 11:50:41 +0100
commitbaae41acfd07b91803373e310dc9e5ac7c6a4787 (patch)
tree677bf079c92f5137a079e5859608cdfb15ed516d /dbus
parentaa033d92eecb6f3d24f48796f44bbba393caa59c (diff)
address for daemon changed to "kdbus:", licencses and copyrights added
Change-Id: I9877a81b59f5c90d5510ae3cfa218e7ac414e9cf Signed-off-by: Radoslaw Pajak <r.pajak@samsung.com>
Diffstat (limited to 'dbus')
-rw-r--r--dbus/dbus-auth.c1
-rw-r--r--dbus/dbus-auth.h1
-rw-r--r--dbus/dbus-bus.c1
-rw-r--r--dbus/dbus-connection.c3
-rw-r--r--dbus/dbus-transport-kdbus.c28
-rw-r--r--dbus/dbus-transport-kdbus.h27
-rw-r--r--dbus/dbus-transport.c1
-rw-r--r--dbus/kdbus-common.c28
-rw-r--r--dbus/kdbus-common.h27
-rw-r--r--dbus/kdbus.h1
10 files changed, 98 insertions, 20 deletions
diff --git a/dbus/dbus-auth.c b/dbus/dbus-auth.c
index a7fc65f1..735eb2d5 100644
--- a/dbus/dbus-auth.c
+++ b/dbus/dbus-auth.c
@@ -2,6 +2,7 @@
/* dbus-auth.c Authentication
*
* Copyright (C) 2002, 2003, 2004 Red Hat Inc.
+ * Copyright (C) 2013 Samsung Electronics
*
* Licensed under the Academic Free License version 2.1
*
diff --git a/dbus/dbus-auth.h b/dbus/dbus-auth.h
index 02217c33..e54fd2c0 100644
--- a/dbus/dbus-auth.h
+++ b/dbus/dbus-auth.h
@@ -2,6 +2,7 @@
/* dbus-auth.h Authentication
*
* Copyright (C) 2002 Red Hat Inc.
+ * Copyright (C) 2013 Samsung Electronics
*
* Licensed under the Academic Free License version 2.1
*
diff --git a/dbus/dbus-bus.c b/dbus/dbus-bus.c
index 494adcd5..500c0ffc 100644
--- a/dbus/dbus-bus.c
+++ b/dbus/dbus-bus.c
@@ -3,6 +3,7 @@
*
* Copyright (C) 2003 CodeFactory AB
* Copyright (C) 2003 Red Hat, Inc.
+ * Copyright (C) 2013 Samsung Electronics
*
* Licensed under the Academic Free License version 2.1
*
diff --git a/dbus/dbus-connection.c b/dbus/dbus-connection.c
index 58f514b3..b0f635f1 100644
--- a/dbus/dbus-connection.c
+++ b/dbus/dbus-connection.c
@@ -2,6 +2,7 @@
/* dbus-connection.c DBusConnection object
*
* Copyright (C) 2002-2006 Red Hat Inc.
+ * Copyright (C) 2013 Samsung Electronics
*
* Licensed under the Academic Free License version 2.1
*
@@ -3313,7 +3314,7 @@ dbus_connection_send_preallocated (DBusConnection *connection,
}
#endif
- _dbus_verbose ("Reply sender: %s, destination: %s\n", dbus_message_get_sender(message), dbus_message_get_destination(message)); //todo kdbus temp addon
+
_dbus_connection_send_preallocated_and_unlock (connection,
preallocated,
message, client_serial);
diff --git a/dbus/dbus-transport-kdbus.c b/dbus/dbus-transport-kdbus.c
index e7c37a29..3a50075e 100644
--- a/dbus/dbus-transport-kdbus.c
+++ b/dbus/dbus-transport-kdbus.c
@@ -1,17 +1,31 @@
-/*
- * dbus-transport-kdbus.c
+/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
+/* dbus-transport-kdbus.c kdbus subclasses of DBusTransport
+ *
+ * Copyright (C) 2002, 2003, 2004, 2006 Red Hat Inc
+ * Copyright (C) 2013 Samsung Electronics
*
- * Transport layer using kdbus
+ * Licensed under the Academic Free License version 2.1
*
- * Created on: Jun 20, 2013
- * Author: r.pajak
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version and under the terms of the GNU
+ * Lesser General Public License as published by the
+ * Free Software Foundation; either version 2.1 of the License, or (at
+ * your option) any later version.
*
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
-
#include "dbus-transport.h"
#include "dbus-transport-kdbus.h"
-//#include <dbus/dbus-transport-protected.h>
#include "dbus-transport-protected.h"
#include "dbus-connection-internal.h"
#include "kdbus.h"
diff --git a/dbus/dbus-transport-kdbus.h b/dbus/dbus-transport-kdbus.h
index 098ceaac..8c37017b 100644
--- a/dbus/dbus-transport-kdbus.h
+++ b/dbus/dbus-transport-kdbus.h
@@ -1,4 +1,29 @@
-
+/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
+/* dbus-transport-kdbus.h kdbus subclasses of DBusTransport
+ *
+ * Copyright (C) 2002, 2006 Red Hat Inc.
+ * Copyright (C) 2013 Samsung Electronics
+ *
+ * Licensed under the Academic Free License version 2.1
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version and under the terms of the GNU
+ * Lesser General Public License as published by the
+ * Free Software Foundation; either version 2.1 of the License, or (at
+ * your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
#ifndef DBUS_TRANSPORT_KDBUS_H_
#define DBUS_TRANSPORT_KDBUS_H_
diff --git a/dbus/dbus-transport.c b/dbus/dbus-transport.c
index d7924bae..e3577ecd 100644
--- a/dbus/dbus-transport.c
+++ b/dbus/dbus-transport.c
@@ -2,6 +2,7 @@
/* dbus-transport.c DBusTransport object (internal to D-Bus implementation)
*
* Copyright (C) 2002, 2003 Red Hat Inc.
+ * Copyright (C) 2013 Samsung Electronics
*
* Licensed under the Academic Free License version 2.1
*
diff --git a/dbus/kdbus-common.c b/dbus/kdbus-common.c
index de618edc..6356bec4 100644
--- a/dbus/kdbus-common.c
+++ b/dbus/kdbus-common.c
@@ -1,12 +1,28 @@
-/*
- * kdbus_common.c
+/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
+/* kdbus-common.c kdbus related utils for daemon and libdbus
*
- * Created on: Sep 13, 2013
- * Author: r.pajak
+ * Copyright (C) 2013 Samsung Electronics
+ *
+ * Licensed under the Academic Free License version 2.1
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version and under the terms of the GNU
+ * Lesser General Public License as published by the
+ * Free Software Foundation; either version 2.1 of the License, or (at
+ * your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
- * Kdbus internal util functions used by daemon and libdbus
*/
-
#include "kdbus.h"
#include "kdbus-common.h"
#include <string.h>
diff --git a/dbus/kdbus-common.h b/dbus/kdbus-common.h
index 93cd7267..4a50ed08 100644
--- a/dbus/kdbus-common.h
+++ b/dbus/kdbus-common.h
@@ -1,10 +1,27 @@
-/*
- * kdbus_common.h
+/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
+/* kdbus-common.h kdbus related utils for daemon and libdbus
*
- * Created on: Sep 13, 2013
- * Author: r.pajak
+ * Copyright (C) 2013 Samsung Electronics
+ *
+ * Licensed under the Academic Free License version 2.1
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version and under the terms of the GNU
+ * Lesser General Public License as published by the
+ * Free Software Foundation; either version 2.1 of the License, or (at
+ * your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
- * Kdbus internal util functions used by daemon and libdbus
*/
#ifndef KDBUS_COMMON_H_
diff --git a/dbus/kdbus.h b/dbus/kdbus.h
index 4e4c2cb3..7eb95270 100644
--- a/dbus/kdbus.h
+++ b/dbus/kdbus.h
@@ -4,6 +4,7 @@
* Copyright (C) 2013 Linux Foundation
* Copyright (C) 2013 Lennart Poettering
* Copyright (C) 2013 Daniel Mack <daniel@zonque.org>
+ * Copyright (C) 2013 Samsung Electronics
*
* kdbus is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the