summaryrefslogtreecommitdiff
path: root/src/agent.c
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2008-01-24 12:07:55 +0100
committerMarcel Holtmann <marcel@holtmann.org>2008-01-24 12:07:55 +0100
commit7aac03f81d1a9e3d0e5c476b22ca883f839e6d1c (patch)
treefbfaf0fc56cae29110f5b71aa465501b1a19fa23 /src/agent.c
parent199daf70bac7eb1d2d7fdafc66b2a1baba188bdc (diff)
downloadconnman-7aac03f81d1a9e3d0e5c476b22ca883f839e6d1c.tar.gz
connman-7aac03f81d1a9e3d0e5c476b22ca883f839e6d1c.tar.bz2
connman-7aac03f81d1a9e3d0e5c476b22ca883f839e6d1c.zip
Add skeleton for agent infrastructure
Diffstat (limited to 'src/agent.c')
-rw-r--r--src/agent.c52
1 files changed, 52 insertions, 0 deletions
diff --git a/src/agent.c b/src/agent.c
new file mode 100644
index 00000000..d3a27463
--- /dev/null
+++ b/src/agent.c
@@ -0,0 +1,52 @@
+/*
+ *
+ * Connection Manager
+ *
+ * Copyright (C) 2007 Intel Corporation. All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * 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 St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include "connman.h"
+
+int __connman_agent_init(void)
+{
+ DBG("");
+
+ return 0;
+}
+
+void __connman_agent_cleanup(void)
+{
+ DBG("");
+}
+
+int __connman_agent_register(const char *path)
+{
+ DBG("");
+
+ return 0;
+}
+
+int __connman_agent_unregister(const char *path)
+{
+ DBG("");
+
+ return 0;
+}