summaryrefslogtreecommitdiff
path: root/libsoup/soup-message-headers.c
diff options
context:
space:
mode:
authorEvan Nemerson <evan@nemerson.com>2014-05-11 23:58:26 -0700
committerDan Winship <danw@gnome.org>2014-11-23 09:39:54 -0500
commita50ea582c71081b53311f36c35eeee2dda0fa9cf (patch)
tree6c401af34dfc925095edca648d2a335b5c110a39 /libsoup/soup-message-headers.c
parentadd13ea00e31f9f78d8dd4b26109575a7500dcf6 (diff)
downloadlibsoup-a50ea582c71081b53311f36c35eeee2dda0fa9cf.tar.gz
Add missing (nullable) annotations, assorted minor introspection fixes
https://bugzilla.gnome.org/show_bug.cgi?id=729987
Diffstat (limited to 'libsoup/soup-message-headers.c')
-rw-r--r--libsoup/soup-message-headers.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/libsoup/soup-message-headers.c b/libsoup/soup-message-headers.c
index 9c704b49..dcbecaac 100644
--- a/libsoup/soup-message-headers.c
+++ b/libsoup/soup-message-headers.c
@@ -299,7 +299,7 @@ soup_message_headers_remove (SoupMessageHeaders *hdrs, const char *name)
* whichever one makes libsoup most compatible with other HTTP
* implementations.)
*
- * Return value: the header's value or %NULL if not found.
+ * Return value: (nullable): the header's value or %NULL if not found.
*
* Since: 2.28
**/
@@ -337,7 +337,7 @@ soup_message_headers_get_one (SoupMessageHeaders *hdrs, const char *name)
* transformation is allowed, and so an upstream proxy could do the
* same thing.
*
- * Return value: the header's value or %NULL if not found.
+ * Return value: (nullable): the header's value or %NULL if not found.
*
* Since: 2.28
**/
@@ -393,7 +393,7 @@ soup_message_headers_get_list (SoupMessageHeaders *hdrs, const char *name)
* soup_message_headers_get_list() were introduced, so callers can
* explicitly state which behavior they are expecting.
*
- * Return value: as with soup_message_headers_get_list().
+ * Return value: (nullable): as with soup_message_headers_get_list().
*
* Deprecated: Use soup_message_headers_get_one() or
* soup_message_headers_get_list() instead.
@@ -1273,9 +1273,10 @@ content_type_setter (SoupMessageHeaders *hdrs, const char *value)
* its value in *@content_type and *@params. @params can be %NULL if you
* are only interested in the content type itself.
*
- * Return value: a string with the value of the "Content-Type" header
- * or NULL if @hdrs does not contain that header or it cannot be
- * parsed (in which case *@params will be unchanged).
+ * Return value: (nullable): a string with the value of the
+ * "Content-Type" header or %NULL if @hdrs does not contain that
+ * header or it cannot be parsed (in which case *@params will be
+ * unchanged).
*
* Since: 2.26
**/