summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Griffis <pgriffis@igalia.com>2020-10-28 13:31:21 -0500
committerPatrick Griffis <pgriffis@igalia.com>2020-10-28 13:31:21 -0500
commitf036244eb2c0c50291f5bf06cd1561d4310ce7c0 (patch)
tree0593fe36faf5e57aa1cc5481d95389c157f3d437
parent8548bc6f2849278756ed6098b8ac41e5d5ffe01d (diff)
downloadlibsoup-f036244eb2c0c50291f5bf06cd1561d4310ce7c0.tar.gz
docs: Fix references to old public structs
-rw-r--r--docs/reference/libsoup-3.0-sections.txt2
-rw-r--r--libsoup/cookies/soup-cookie.c8
-rw-r--r--libsoup/hsts/soup-hsts-policy.c4
-rw-r--r--libsoup/soup-message.c5
4 files changed, 2 insertions, 17 deletions
diff --git a/docs/reference/libsoup-3.0-sections.txt b/docs/reference/libsoup-3.0-sections.txt
index f7b06b82..6a664268 100644
--- a/docs/reference/libsoup-3.0-sections.txt
+++ b/docs/reference/libsoup-3.0-sections.txt
@@ -1079,6 +1079,8 @@ soup_hsts_policy_copy
soup_hsts_policy_equal
soup_hsts_policy_free
soup_hsts_policy_get_domain
+soup_hsts_policy_get_max_age
+soup_hsts_policy_get_expires
soup_hsts_policy_is_expired
soup_hsts_policy_includes_subdomains
soup_hsts_policy_is_session_policy
diff --git a/libsoup/cookies/soup-cookie.c b/libsoup/cookies/soup-cookie.c
index 943ab80d..87d4069a 100644
--- a/libsoup/cookies/soup-cookie.c
+++ b/libsoup/cookies/soup-cookie.c
@@ -31,14 +31,6 @@
/**
* SoupCookie:
- * @name: the cookie name
- * @value: the cookie value
- * @domain: the "domain" attribute, or else the hostname that the
- * cookie came from.
- * @path: the "path" attribute, or %NULL
- * @expires: the cookie expiration time, or %NULL for a session cookie
- * @secure: %TRUE if the cookie should only be tranferred over SSL
- * @http_only: %TRUE if the cookie should not be exposed to scripts
*
* An HTTP cookie.
*
diff --git a/libsoup/hsts/soup-hsts-policy.c b/libsoup/hsts/soup-hsts-policy.c
index 0399db48..f17eebbe 100644
--- a/libsoup/hsts/soup-hsts-policy.c
+++ b/libsoup/hsts/soup-hsts-policy.c
@@ -30,10 +30,6 @@
/**
* SoupHSTSPolicy:
- * @domain: The domain or hostname that the policy applies to
- * @max_age: The maximum age, in seconds, that the policy is valid
- * @expires: the policy expiration time, or %NULL for a permanent session policy
- * @include_subdomains: %TRUE if the policy applies on subdomains
*
* #SoupHSTSPolicy implements HTTP policies, as described by
* [RFC 6797](http://tools.ietf.org/html/rfc6797).
diff --git a/libsoup/soup-message.c b/libsoup/soup-message.c
index 15d0d787..460182c6 100644
--- a/libsoup/soup-message.c
+++ b/libsoup/soup-message.c
@@ -37,11 +37,6 @@
/**
* SoupMessage:
- * @method: the HTTP method
- * @status_code: the HTTP status code
- * @reason_phrase: the status phrase associated with @status_code
- * @request_headers: the request headers
- * @response_headers: the response headers
*
* Represents an HTTP message being sent or received.
*