aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy
diff options
context:
space:
mode:
authorGuillaume Desmottes <gdesmott@gnome.org>2008-02-17 01:24:23 +0800
committerGuillaume Desmottes <gdesmott@gnome.org>2008-02-17 01:24:23 +0800
commit87132354651fdbcc9c72ffe8a99290feeebd1c69 (patch)
tree831a487b3ce04dc14d9b3c537a18955320c3f59d /libempathy
parenta5ad3cf44d7fbb43d21984ed40d0fade79f5cfb4 (diff)
downloadgsoc2013-empathy-87132354651fdbcc9c72ffe8a99290feeebd1c69.tar
gsoc2013-empathy-87132354651fdbcc9c72ffe8a99290feeebd1c69.tar.gz
gsoc2013-empathy-87132354651fdbcc9c72ffe8a99290feeebd1c69.tar.bz2
gsoc2013-empathy-87132354651fdbcc9c72ffe8a99290feeebd1c69.tar.lz
gsoc2013-empathy-87132354651fdbcc9c72ffe8a99290feeebd1c69.tar.xz
gsoc2013-empathy-87132354651fdbcc9c72ffe8a99290feeebd1c69.tar.zst
gsoc2013-empathy-87132354651fdbcc9c72ffe8a99290feeebd1c69.zip
document EmpathyIrcServer
Diffstat (limited to 'libempathy')
-rw-r--r--libempathy/empathy-irc-server.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/libempathy/empathy-irc-server.c b/libempathy/empathy-irc-server.c
index 2cd8f7d79..9df628c40 100644
--- a/libempathy/empathy-irc-server.c
+++ b/libempathy/empathy-irc-server.c
@@ -193,6 +193,13 @@ empathy_irc_server_class_init (EmpathyIrcServerClass *klass)
G_PARAM_STATIC_BLURB);
g_object_class_install_property (object_class, PROP_SSL, param_spec);
+ /**
+ * EmpathyIrcServer::modified:
+ * @server: the object that received the signal
+ *
+ * Emitted when a property of the server is modified
+ *
+ */
signals[MODIFIED] = g_signal_new (
"modified",
G_OBJECT_CLASS_TYPE (object_class),
@@ -203,6 +210,16 @@ empathy_irc_server_class_init (EmpathyIrcServerClass *klass)
G_TYPE_NONE, 0);
}
+/**
+ * empathy_irc_server_new:
+ * @address: the address
+ * @port: the port
+ * @ssl: TRUE if the server needs a SSL connection
+ *
+ * Creates a new #EmpathyIrcServer
+ *
+ * Returns: a new #EmpathyIrcServer
+ */
EmpathyIrcServer *
empathy_irc_server_new (const gchar *address,
guint port,