telepathy-cauchy/src/cauchy-connection-manager.c

65 lines
2.0 KiB
C

/*
* This file is part of telepathy-cauchy
*
* telepathy-cauchy 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 Free Software Foundation, either
* version 3 of the License, or (at your option) any later version.
*
* telepathy-cauchy 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with telepathy-cauchy. If not, see
* <http://www.gnu.org/licenses/>.
*/
#include "cauchy-connection-manager.h"
#include "cauchy-protocol.h"
#include "cauchy-debug.h"
G_DEFINE_TYPE(CauchyConnectionManager, cauchy_connection_manager, TP_TYPE_BASE_CONNECTION_MANAGER);
static void
cauchy_connection_manager_finalize(GObject *gobject)
{
cauchy_debug_free();
G_OBJECT_CLASS(cauchy_connection_manager_parent_class)->finalize(gobject);
}
static void
cauchy_connection_manager_constructed(GObject *gobject)
{
TpBaseConnectionManager *base = (TpBaseConnectionManager *)gobject;
TpBaseProtocol *p;
void (*constructed)(GObject *) = ((GObjectClass *)cauchy_connection_manager_parent_class)->constructed;
if (constructed != NULL) {
constructed(gobject);
}
p = cauchy_protocol_new();
tp_base_connection_manager_add_protocol(base, p);
g_object_unref(p);
}
static void
cauchy_connection_manager_class_init(CauchyConnectionManagerClass *klass)
{
GObjectClass *gobject_class = G_OBJECT_CLASS(klass);
TpBaseConnectionManagerClass *parent_class = TP_BASE_CONNECTION_MANAGER_CLASS(klass);
parent_class->cm_dbus_name = "cauchy";
gobject_class->finalize = cauchy_connection_manager_finalize;
gobject_class->constructed = cauchy_connection_manager_constructed;
}
static void
cauchy_connection_manager_init(CauchyConnectionManager *connection_manager)
{
}