summaryrefslogtreecommitdiff
path: root/libsoup/soup-server.c
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2011-09-22 14:17:47 -0400
committerDan Winship <danw@gnome.org>2011-09-22 14:17:47 -0400
commit8bc27529eb2c87a5c27e1ffd388a274d4c1ae44e (patch)
tree7bf1f5010f886b5e85e1f5c3258b09b331ded881 /libsoup/soup-server.c
parent27b306cb9e8cc0b91e2188cc820c7c511f64b69c (diff)
downloadlibsoup-8bc27529eb2c87a5c27e1ffd388a274d4c1ae44e.tar.gz
Lots of gtk-doc fixes (no code changes)
Diffstat (limited to 'libsoup/soup-server.c')
-rw-r--r--libsoup/soup-server.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/libsoup/soup-server.c b/libsoup/soup-server.c
index 92bcc507..aa735808 100644
--- a/libsoup/soup-server.c
+++ b/libsoup/soup-server.c
@@ -429,7 +429,7 @@ soup_server_class_init (SoupServerClass *server_class)
* holes.
*
* As with #SoupSession:user_agent, if you set a
- * %server_header property that has trailing whitespace,
+ * #SoupServer:server_header property that has trailing whitespace,
* #SoupServer will append its own product token (eg,
* "<literal>libsoup/2.3.2</literal>") to the end of the
* header for you.
@@ -1206,8 +1206,9 @@ soup_client_context_get_auth_user (SoupClientContext *client)
* @user_data: the data passed to @soup_server_add_handler
*
* A callback used to handle requests to a #SoupServer. The callback
- * will be invoked after receiving the request body; @msg's %method,
- * %request_headers, and %request_body fields will be filled in.
+ * will be invoked after receiving the request body; @msg's
+ * #SoupMessage:method, #SoupMessage:request_headers, and
+ * #SoupMessage:request_body fields will be filled in.
*
* @path and @query contain the likewise-named components of the
* Request-URI, subject to certain assumptions. By default,
@@ -1243,7 +1244,7 @@ soup_client_context_get_auth_user (SoupClientContext *client)
*
* To send the response body a bit at a time using "chunked" encoding,
* first call soup_message_headers_set_encoding() to set
- * %SOUP_ENCODING_CHUNKED on the %response_headers. Then call
+ * %SOUP_ENCODING_CHUNKED on the #SoupMessage:response_headers. Then call
* soup_message_body_append() (or soup_message_body_append_buffer())
* to append each chunk as it becomes ready, and
* soup_server_unpause_message() to make sure it's running. (The