token: add method to check boolean permission
authorWim Taymans <wim.taymans@collabora.co.uk>
Fri, 12 Jul 2013 15:06:37 +0000 (17:06 +0200)
committerWim Taymans <wim.taymans@collabora.co.uk>
Fri, 12 Jul 2013 15:06:37 +0000 (17:06 +0200)
gst/rtsp-server/rtsp-token.c
gst/rtsp-server/rtsp-token.h

index 2c228f7..b252ff5 100644 (file)
@@ -205,3 +205,24 @@ gst_rtsp_token_get_string (GstRTSPToken * token, const gchar * field)
 {
   return gst_structure_get_string (GST_RTSP_TOKEN_STRUCTURE (token), field);
 }
+
+/**
+ * gst_rtsp_token_is_allowed:
+ * @token: a #GstRTSPToken
+ * @field: a field name
+ *
+ * Check if @token has a boolean @field and if it is set to %TRUE.
+ *
+ * Returns: %TRUE if @token has a boolean field named @field set to %TRUE.
+ */
+gboolean
+gst_rtsp_token_is_allowed (GstRTSPToken * token, const gchar * field)
+{
+  gboolean result;
+
+  if (!gst_structure_get_boolean (GST_RTSP_TOKEN_STRUCTURE (token), field,
+          &result))
+    result = FALSE;
+
+  return result;
+}
index fa6a888..b7c06c4 100644 (file)
@@ -90,6 +90,8 @@ GstStructure *       gst_rtsp_token_writable_structure (GstRTSPToken *token);
 
 const gchar *        gst_rtsp_token_get_string         (GstRTSPToken *token,
                                                         const gchar *field);
+gboolean             gst_rtsp_token_is_allowed         (GstRTSPToken *token,
+                                                        const gchar *field);
 G_END_DECLS
 
 #endif /* __GST_RTSP_TOKEN_H__ */