From c761480865c6b65e370e2bba750c86c226a7fc3f Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Fri, 27 Oct 2006 14:46:36 +0000 Subject: Add skeletons for service implementations --- network/Makefile.am | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 network/Makefile.am (limited to 'network/Makefile.am') diff --git a/network/Makefile.am b/network/Makefile.am new file mode 100644 index 00000000..78cdd390 --- /dev/null +++ b/network/Makefile.am @@ -0,0 +1,12 @@ + +noinst_PROGRAMS = bt.networkd + +bt_networkd_SOURCES = main.c + +bt_networkd_LDADD = @DBUS_LIBS@ @BLUEZ_LIBS@ $(top_builddir)/common/libhelper.a + +AM_CFLAGS = @BLUEZ_CFLAGS@ @DBUS_CFLAGS@ + +INCLUDES = -I$(top_srcdir)/common + +MAINTAINERCLEANFILES = Makefile.in -- cgit From cc918032d62f4df51657055649df8ee92cab0020 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Fri, 19 Jan 2007 21:55:53 +0000 Subject: Rename service and install it --- network/Makefile.am | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'network/Makefile.am') diff --git a/network/Makefile.am b/network/Makefile.am index 78cdd390..c0c196fc 100644 --- a/network/Makefile.am +++ b/network/Makefile.am @@ -1,9 +1,12 @@ -noinst_PROGRAMS = bt.networkd +servicedir = $(libdir)/bluetooth -bt_networkd_SOURCES = main.c +service_PROGRAMS = bluetoothd-service-network -bt_networkd_LDADD = @DBUS_LIBS@ @BLUEZ_LIBS@ $(top_builddir)/common/libhelper.a +bluetoothd_service_network_SOURCES = main.c + +LDADD = $(top_builddir)/common/libhelper.a \ + @DBUS_LIBS@ @BLUEZ_LIBS@ AM_CFLAGS = @BLUEZ_CFLAGS@ @DBUS_CFLAGS@ -- cgit From 884cfe825db1a0e8c98aa6a604fd4588a1de1340 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Sat, 20 Jan 2007 02:36:57 +0000 Subject: Don't install services that are in experimental state --- network/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'network/Makefile.am') diff --git a/network/Makefile.am b/network/Makefile.am index c0c196fc..362c7af6 100644 --- a/network/Makefile.am +++ b/network/Makefile.am @@ -1,7 +1,7 @@ servicedir = $(libdir)/bluetooth -service_PROGRAMS = bluetoothd-service-network +noinst_PROGRAMS = bluetoothd-service-network bluetoothd_service_network_SOURCES = main.c -- cgit From 3406c27e758f3dfa182f6fdfcc878bc3a53e3c98 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Fri, 9 Mar 2007 15:33:38 +0000 Subject: Add skeleton for network service --- network/Makefile.am | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'network/Makefile.am') diff --git a/network/Makefile.am b/network/Makefile.am index 362c7af6..fe6e3110 100644 --- a/network/Makefile.am +++ b/network/Makefile.am @@ -1,15 +1,26 @@ +if NETWORKSERVICE +if CONFIGFILES +confdir = $(sysconfdir)/bluetooth + +conf_DATA = network.service +endif + servicedir = $(libdir)/bluetooth noinst_PROGRAMS = bluetoothd-service-network -bluetoothd_service_network_SOURCES = main.c +bluetoothd_service_network_SOURCES = main.c \ + manager.h manager.c server.h server.c connection.h connection.c LDADD = $(top_builddir)/common/libhelper.a \ - @DBUS_LIBS@ @BLUEZ_LIBS@ + @DBUS_LIBS@ @BLUEZ_LIBS@ +endif AM_CFLAGS = @BLUEZ_CFLAGS@ @DBUS_CFLAGS@ INCLUDES = -I$(top_srcdir)/common +EXTRA_DIST = network.service network-api.txt + MAINTAINERCLEANFILES = Makefile.in -- cgit From f612aabb413e813f8800ff85f341e994885a5692 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Fri, 9 Mar 2007 15:46:51 +0000 Subject: Don't forget to link against GLib --- network/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'network/Makefile.am') diff --git a/network/Makefile.am b/network/Makefile.am index fe6e3110..ab7fe934 100644 --- a/network/Makefile.am +++ b/network/Makefile.am @@ -14,10 +14,10 @@ bluetoothd_service_network_SOURCES = main.c \ manager.h manager.c server.h server.c connection.h connection.c LDADD = $(top_builddir)/common/libhelper.a \ - @DBUS_LIBS@ @BLUEZ_LIBS@ + @GLIB_LIBS@ @DBUS_LIBS@ @BLUEZ_LIBS@ endif -AM_CFLAGS = @BLUEZ_CFLAGS@ @DBUS_CFLAGS@ +AM_CFLAGS = @BLUEZ_CFLAGS@ @DBUS_CFLAGS@ @GLIB_CFLAGS@ INCLUDES = -I$(top_srcdir)/common -- cgit From 57821cca7bfdb47cd3ddc32e70b6779a4a6cca2d Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Fri, 16 Mar 2007 18:17:27 +0000 Subject: Add error specific skeleton files --- network/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'network/Makefile.am') diff --git a/network/Makefile.am b/network/Makefile.am index ab7fe934..22a7aef3 100644 --- a/network/Makefile.am +++ b/network/Makefile.am @@ -11,7 +11,8 @@ servicedir = $(libdir)/bluetooth noinst_PROGRAMS = bluetoothd-service-network bluetoothd_service_network_SOURCES = main.c \ - manager.h manager.c server.h server.c connection.h connection.c + manager.h manager.c error.h error.c \ + server.h server.c connection.h connection.c LDADD = $(top_builddir)/common/libhelper.a \ @GLIB_LIBS@ @DBUS_LIBS@ @BLUEZ_LIBS@ -- cgit From 7ba9c777c7755dc380443f29f41fcd2a61e1b7df Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Fri, 16 Mar 2007 19:58:29 +0000 Subject: Add minimal support for bridge creation and removal --- network/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'network/Makefile.am') diff --git a/network/Makefile.am b/network/Makefile.am index 22a7aef3..094f95e8 100644 --- a/network/Makefile.am +++ b/network/Makefile.am @@ -12,7 +12,8 @@ noinst_PROGRAMS = bluetoothd-service-network bluetoothd_service_network_SOURCES = main.c \ manager.h manager.c error.h error.c \ - server.h server.c connection.h connection.c + server.h server.c bridge.h bridge.c \ + connection.h connection.c LDADD = $(top_builddir)/common/libhelper.a \ @GLIB_LIBS@ @DBUS_LIBS@ @BLUEZ_LIBS@ -- cgit From d56a98ac7b81e416b7f9e43ae7dfcb7b6a573dd1 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Mon, 19 Mar 2007 19:17:33 +0000 Subject: Add skeleton for HAL support --- network/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'network/Makefile.am') diff --git a/network/Makefile.am b/network/Makefile.am index 094f95e8..aa3412b6 100644 --- a/network/Makefile.am +++ b/network/Makefile.am @@ -13,7 +13,7 @@ noinst_PROGRAMS = bluetoothd-service-network bluetoothd_service_network_SOURCES = main.c \ manager.h manager.c error.h error.c \ server.h server.c bridge.h bridge.c \ - connection.h connection.c + hal.h hal.c connection.h connection.c LDADD = $(top_builddir)/common/libhelper.a \ @GLIB_LIBS@ @DBUS_LIBS@ @BLUEZ_LIBS@ -- cgit From 37ca3ab5974892ba7a4a87420a70bafa070db812 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Mon, 19 Mar 2007 19:27:28 +0000 Subject: Check for HAL support --- network/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'network/Makefile.am') diff --git a/network/Makefile.am b/network/Makefile.am index aa3412b6..686fad9a 100644 --- a/network/Makefile.am +++ b/network/Makefile.am @@ -16,10 +16,10 @@ bluetoothd_service_network_SOURCES = main.c \ hal.h hal.c connection.h connection.c LDADD = $(top_builddir)/common/libhelper.a \ - @GLIB_LIBS@ @DBUS_LIBS@ @BLUEZ_LIBS@ + @GLIB_LIBS@ @HAL_LIBS@ @DBUS_LIBS@ @BLUEZ_LIBS@ endif -AM_CFLAGS = @BLUEZ_CFLAGS@ @DBUS_CFLAGS@ @GLIB_CFLAGS@ +AM_CFLAGS = @BLUEZ_CFLAGS@ @DBUS_CFLAGS@ @HAL_CFLAGS@ @GLIB_CFLAGS@ INCLUDES = -I$(top_srcdir)/common -- cgit From 6e2ea33ba70a7d6b6ffa614a8fe57fe7662b7c70 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Tue, 20 Mar 2007 14:48:00 +0000 Subject: Create a common HAL abstraction layer --- network/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'network/Makefile.am') diff --git a/network/Makefile.am b/network/Makefile.am index 686fad9a..65dfde44 100644 --- a/network/Makefile.am +++ b/network/Makefile.am @@ -13,7 +13,7 @@ noinst_PROGRAMS = bluetoothd-service-network bluetoothd_service_network_SOURCES = main.c \ manager.h manager.c error.h error.c \ server.h server.c bridge.h bridge.c \ - hal.h hal.c connection.h connection.c + connection.h connection.c LDADD = $(top_builddir)/common/libhelper.a \ @GLIB_LIBS@ @HAL_LIBS@ @DBUS_LIBS@ @BLUEZ_LIBS@ -- cgit From e8b263fa47a9d33ed8fc48f51d44a5ece0cc8e7b Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Wed, 21 Mar 2007 20:28:55 +0000 Subject: Add file for shared functions --- network/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'network/Makefile.am') diff --git a/network/Makefile.am b/network/Makefile.am index 65dfde44..a9fd2f60 100644 --- a/network/Makefile.am +++ b/network/Makefile.am @@ -13,7 +13,7 @@ noinst_PROGRAMS = bluetoothd-service-network bluetoothd_service_network_SOURCES = main.c \ manager.h manager.c error.h error.c \ server.h server.c bridge.h bridge.c \ - connection.h connection.c + connection.h connection.c common.h common.c LDADD = $(top_builddir)/common/libhelper.a \ @GLIB_LIBS@ @HAL_LIBS@ @DBUS_LIBS@ @BLUEZ_LIBS@ -- cgit From a1e5adc417797a4896e864851741f02cdad4c3e3 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Wed, 21 Mar 2007 21:25:10 +0000 Subject: Install the network service if enabled --- network/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'network/Makefile.am') diff --git a/network/Makefile.am b/network/Makefile.am index a9fd2f60..e01bd4b9 100644 --- a/network/Makefile.am +++ b/network/Makefile.am @@ -8,7 +8,7 @@ endif servicedir = $(libdir)/bluetooth -noinst_PROGRAMS = bluetoothd-service-network +service_PROGRAMS = bluetoothd-service-network bluetoothd_service_network_SOURCES = main.c \ manager.h manager.c error.h error.c \ -- cgit From fcba5ddbba50277ab533ac9efc8414f8b839ec8e Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Tue, 8 May 2007 14:08:54 +0000 Subject: Add service test scripts --- network/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'network/Makefile.am') diff --git a/network/Makefile.am b/network/Makefile.am index e01bd4b9..17869043 100644 --- a/network/Makefile.am +++ b/network/Makefile.am @@ -23,6 +23,6 @@ AM_CFLAGS = @BLUEZ_CFLAGS@ @DBUS_CFLAGS@ @HAL_CFLAGS@ @GLIB_CFLAGS@ INCLUDES = -I$(top_srcdir)/common -EXTRA_DIST = network.service network-api.txt +EXTRA_DIST = network.service network-api.txt test-network MAINTAINERCLEANFILES = Makefile.in -- cgit From 0b625c60310de7016f90dbf80c9d02c1b14dc375 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Fri, 14 Sep 2007 10:21:07 +0000 Subject: Add network service configuration file --- network/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'network/Makefile.am') diff --git a/network/Makefile.am b/network/Makefile.am index 17869043..c8ca039e 100644 --- a/network/Makefile.am +++ b/network/Makefile.am @@ -23,6 +23,6 @@ AM_CFLAGS = @BLUEZ_CFLAGS@ @DBUS_CFLAGS@ @HAL_CFLAGS@ @GLIB_CFLAGS@ INCLUDES = -I$(top_srcdir)/common -EXTRA_DIST = network.service network-api.txt test-network +EXTRA_DIST = network.service network.conf network-api.txt test-network MAINTAINERCLEANFILES = Makefile.in -- cgit From 7e88afe4f8307c092172ff3c3b76c2f95ab00293 Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Mon, 26 Nov 2007 13:43:17 +0000 Subject: Update services to new error codes and helper functions --- network/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'network/Makefile.am') diff --git a/network/Makefile.am b/network/Makefile.am index c8ca039e..2f8a7c3d 100644 --- a/network/Makefile.am +++ b/network/Makefile.am @@ -11,7 +11,7 @@ servicedir = $(libdir)/bluetooth service_PROGRAMS = bluetoothd-service-network bluetoothd_service_network_SOURCES = main.c \ - manager.h manager.c error.h error.c \ + manager.h manager.c \ server.h server.c bridge.h bridge.c \ connection.h connection.c common.h common.c -- cgit From 20535eb126256b54a9822935a120a13494ff056b Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Sun, 9 Dec 2007 02:54:19 +0000 Subject: Make sure to install network.conf --- network/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'network/Makefile.am') diff --git a/network/Makefile.am b/network/Makefile.am index 2f8a7c3d..3f79b311 100644 --- a/network/Makefile.am +++ b/network/Makefile.am @@ -3,7 +3,7 @@ if NETWORKSERVICE if CONFIGFILES confdir = $(sysconfdir)/bluetooth -conf_DATA = network.service +conf_DATA = network.service network.conf endif servicedir = $(libdir)/bluetooth -- cgit From 28d439d57877be7fc541c406e976f063844915a2 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Wed, 12 Dec 2007 15:58:00 +0000 Subject: Don't install network.conf for now --- network/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'network/Makefile.am') diff --git a/network/Makefile.am b/network/Makefile.am index 3f79b311..2f8a7c3d 100644 --- a/network/Makefile.am +++ b/network/Makefile.am @@ -3,7 +3,7 @@ if NETWORKSERVICE if CONFIGFILES confdir = $(sysconfdir)/bluetooth -conf_DATA = network.service network.conf +conf_DATA = network.service endif servicedir = $(libdir)/bluetooth -- cgit From 88e798a8b8126d997ded2adcebafbc3fb1fcb509 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Sat, 22 Mar 2008 15:49:07 +0000 Subject: Convert network service into a plugin --- network/Makefile.am | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) (limited to 'network/Makefile.am') diff --git a/network/Makefile.am b/network/Makefile.am index 2f8a7c3d..da92a8c2 100644 --- a/network/Makefile.am +++ b/network/Makefile.am @@ -1,28 +1,24 @@ if NETWORKSERVICE -if CONFIGFILES -confdir = $(sysconfdir)/bluetooth +plugindir = $(libdir)/bluetooth/plugins -conf_DATA = network.service -endif - -servicedir = $(libdir)/bluetooth +plugin_LTLIBRARIES = libnetwork.la -service_PROGRAMS = bluetoothd-service-network - -bluetoothd_service_network_SOURCES = main.c \ +libnetwork_la_SOURCES = main.c \ manager.h manager.c \ server.h server.c bridge.h bridge.c \ connection.h connection.c common.h common.c LDADD = $(top_builddir)/common/libhelper.a \ - @GLIB_LIBS@ @HAL_LIBS@ @DBUS_LIBS@ @BLUEZ_LIBS@ + @GLIB_LIBS@ @DBUS_LIBS@ @BLUEZ_LIBS@ endif -AM_CFLAGS = @BLUEZ_CFLAGS@ @DBUS_CFLAGS@ @HAL_CFLAGS@ @GLIB_CFLAGS@ +AM_LDFLAGS = -module -avoid-version -export-symbols-regex bluetooth_plugin_desc + +AM_CFLAGS = @BLUEZ_CFLAGS@ @DBUS_CFLAGS@ @GLIB_CFLAGS@ -INCLUDES = -I$(top_srcdir)/common +INCLUDES = -I$(top_srcdir)/common -I$(top_srcdir)/hcid -EXTRA_DIST = network.service network.conf network-api.txt test-network +EXTRA_DIST = network.conf network-api.txt test-network MAINTAINERCLEANFILES = Makefile.in -- cgit From 00a4f42d8f57683489c2bfa2434d813ea33d6bd2 Mon Sep 17 00:00:00 2001 From: Claudio Takahasi Date: Wed, 26 Mar 2008 18:17:26 +0000 Subject: network: Add/Remove records directly instead of use D-Bus messages --- network/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'network/Makefile.am') diff --git a/network/Makefile.am b/network/Makefile.am index da92a8c2..5218ce6f 100644 --- a/network/Makefile.am +++ b/network/Makefile.am @@ -17,7 +17,7 @@ AM_LDFLAGS = -module -avoid-version -export-symbols-regex bluetooth_plugin_desc AM_CFLAGS = @BLUEZ_CFLAGS@ @DBUS_CFLAGS@ @GLIB_CFLAGS@ -INCLUDES = -I$(top_srcdir)/common -I$(top_srcdir)/hcid +INCLUDES = -I$(top_srcdir)/common -I$(top_srcdir)/hcid -I$(top_srcdir)/sdpd EXTRA_DIST = network.conf network-api.txt test-network -- cgit From e7d668ac9e813bc9922ee7d771848bd8822d5d1f Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Thu, 8 May 2008 20:23:45 +0000 Subject: Move D-Bus watch functions into libgdbus --- network/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'network/Makefile.am') diff --git a/network/Makefile.am b/network/Makefile.am index 5218ce6f..e4b5b317 100644 --- a/network/Makefile.am +++ b/network/Makefile.am @@ -10,12 +10,12 @@ libnetwork_la_SOURCES = main.c \ connection.h connection.c common.h common.c LDADD = $(top_builddir)/common/libhelper.a \ - @GLIB_LIBS@ @DBUS_LIBS@ @BLUEZ_LIBS@ + @GDBUS_LIBS@ @GLIB_LIBS@ @DBUS_LIBS@ @BLUEZ_LIBS@ endif AM_LDFLAGS = -module -avoid-version -export-symbols-regex bluetooth_plugin_desc -AM_CFLAGS = @BLUEZ_CFLAGS@ @DBUS_CFLAGS@ @GLIB_CFLAGS@ +AM_CFLAGS = @BLUEZ_CFLAGS@ @DBUS_CFLAGS@ @GLIB_CFLAGS@ @GDBUS_CFLAGS@ INCLUDES = -I$(top_srcdir)/common -I$(top_srcdir)/hcid -I$(top_srcdir)/sdpd -- cgit From f3c0a1a49b0b505b8543b5b3405bd62126be1a24 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Fri, 9 May 2008 09:16:32 +0000 Subject: Use -no-undefined for linking plugins --- network/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'network/Makefile.am') diff --git a/network/Makefile.am b/network/Makefile.am index e4b5b317..a60fcde0 100644 --- a/network/Makefile.am +++ b/network/Makefile.am @@ -13,7 +13,8 @@ LDADD = $(top_builddir)/common/libhelper.a \ @GDBUS_LIBS@ @GLIB_LIBS@ @DBUS_LIBS@ @BLUEZ_LIBS@ endif -AM_LDFLAGS = -module -avoid-version -export-symbols-regex bluetooth_plugin_desc +AM_LDFLAGS = -module -avoid-version -no-undefined \ + -export-symbols-regex bluetooth_plugin_desc AM_CFLAGS = @BLUEZ_CFLAGS@ @DBUS_CFLAGS@ @GLIB_CFLAGS@ @GDBUS_CFLAGS@ -- cgit From 2aab870f593da0b3ec83095e5ded93b900e4b600 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Tue, 3 Jun 2008 20:07:34 +0000 Subject: Update autoconf/automake options --- network/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'network/Makefile.am') diff --git a/network/Makefile.am b/network/Makefile.am index a60fcde0..704a0c8c 100644 --- a/network/Makefile.am +++ b/network/Makefile.am @@ -1,5 +1,5 @@ -if NETWORKSERVICE +if NETWORKPLUGIN plugindir = $(libdir)/bluetooth/plugins plugin_LTLIBRARIES = libnetwork.la -- cgit From a22a088109b664efdee397affed55b039cb0999b Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Mon, 30 Jun 2008 05:47:13 +0000 Subject: Don't use lib prefix for plugins --- network/Makefile.am | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'network/Makefile.am') diff --git a/network/Makefile.am b/network/Makefile.am index 704a0c8c..15208f5a 100644 --- a/network/Makefile.am +++ b/network/Makefile.am @@ -2,10 +2,9 @@ if NETWORKPLUGIN plugindir = $(libdir)/bluetooth/plugins -plugin_LTLIBRARIES = libnetwork.la +plugin_LTLIBRARIES = network.la -libnetwork_la_SOURCES = main.c \ - manager.h manager.c \ +network_la_SOURCES = main.c manager.h manager.c \ server.h server.c bridge.h bridge.c \ connection.h connection.c common.h common.c -- cgit