jingle/sessions.h
changeset 81 8b6320ad470b
parent 80 1c2ef2c5debe
child 83 d5c5e9be53cb
--- a/jingle/sessions.h	Wed Aug 04 23:46:47 2010 +0200
+++ b/jingle/sessions.h	Thu Aug 05 04:33:11 2010 +0200
@@ -44,13 +44,29 @@
 } JingleSession;
 
 typedef struct {
+  /* "A unique name or identifier for the content type
+   *  according to the creator" */
   const gchar *name;
+
+  /* */
   SessionState state;
+
+  /* The namespace of the app */
   const gchar *xmlns_desc;
+
+  /* The internal struct of the app module */
   gconstpointer description;
+
+  /* Struct of functions provided by the app module */
   JingleAppFuncs *appfuncs;
+
+  /* The namespace of the transport */
   const gchar *xmlns_trans;
+
+  /* The internal struct of the transport module */
   gconstpointer transport;
+
+  /* Struct of functions provided by the transport module */
   JingleTransportFuncs *transfuncs;
 } SessionContent;