jingle-ibb/ibb.c
changeset 127 02dde03e219b
parent 126 059a6737f6a4
child 128 cded9f40039e
--- a/jingle-ibb/ibb.c	Sun Aug 15 16:37:32 2010 +0200
+++ b/jingle-ibb/ibb.c	Sun Aug 15 17:35:41 2010 +0200
@@ -43,7 +43,6 @@
 static gconstpointer check(JingleContent *cn, GError **err);
 static gboolean cmp(gconstpointer data1, gconstpointer data2);
 static void tomessage(gconstpointer data, LmMessageNode *node);
-static const gchar* xmlns(void);
 static gconstpointer new(void);
 static void send(session_content *sc, gconstpointer data, gchar *buf, gsize size);
 static void init(session_content *sc, gconstpointer data);
@@ -60,7 +59,6 @@
 const gchar *deps[] = { "jingle", NULL };
 
 static JingleTransportFuncs funcs = {
-  .xmlns     = xmlns,
   .check     = check,
   .tomessage = tomessage,
   .cmp       = cmp,
@@ -81,12 +79,6 @@
   .next            = NULL,
 };
 
-
-static const gchar* xmlns(void)
-{
-  return NS_JINGLE_TRANSPORT_IBB;
-}
-
 static gconstpointer check(JingleContent *cn, GError **err)
 {
   JingleIBB *ibb = NULL;