@@ -1234,6 +1234,28 @@ static bool received_data_continue(struct web_session *session,
return TRUE;
}
+/**
+ * @brief
+ * Handle a glib I/O channel watch received data delegation for a
+ * web session request.
+ *
+ * This handles a glib I/O channel received data delegate for the web
+ * session request associated with @a channel.
+ *
+ * @param[in,out] channel A pointer to the glib channel that
+ * received data or a condition(s)/
+ * event(s).
+ * @param[in] cond The conditions or events that
+ * generated this delegation.
+ * @param[in,out] user_data A pointer to the mutable web session
+ * request associated with @a channel.
+ *
+ * @sa received_data_finalize
+ * @sa received_data_continue
+ *
+ * @private
+ *
+ */
static gboolean received_data(GIOChannel *channel, GIOCondition cond,
gpointer user_data)
{