summaryrefslogtreecommitdiff
path: root/libsoup/soup-connection.c
diff options
context:
space:
mode:
authorPatrick Griffis <pgriffis@igalia.com>2020-10-28 12:52:49 -0500
committerPatrick Griffis <pgriffis@igalia.com>2020-10-28 12:52:49 -0500
commit0120f183ca2b74abeee8439f73abc8ab504fbccf (patch)
tree56e8b1b7a34956628ca21ed44668504d994f0b39 /libsoup/soup-connection.c
parent12ee21b08b58d347a11f01180e4f96f4ba3fa9ba (diff)
downloadlibsoup-0120f183ca2b74abeee8439f73abc8ab504fbccf.tar.gz
Make SoupMessage a private and final type
Diffstat (limited to 'libsoup/soup-connection.c')
-rw-r--r--libsoup/soup-connection.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libsoup/soup-connection.c b/libsoup/soup-connection.c
index dc705e25..3357ebb4 100644
--- a/libsoup/soup-connection.c
+++ b/libsoup/soup-connection.c
@@ -258,8 +258,8 @@ current_msg_got_body (SoupMessage *msg, gpointer user_data)
priv->unused_timeout = 0;
if (priv->proxy_uri &&
- msg->method == SOUP_METHOD_CONNECT &&
- SOUP_STATUS_IS_SUCCESSFUL (msg->status_code)) {
+ soup_message_get_method (msg) == SOUP_METHOD_CONNECT &&
+ SOUP_STATUS_IS_SUCCESSFUL (soup_message_get_status (msg))) {
soup_connection_event (conn, G_SOCKET_CLIENT_PROXY_NEGOTIATED, NULL);
/* We're now effectively no longer proxying */
@@ -292,7 +292,7 @@ set_current_msg (SoupConnection *conn, SoupMessage *msg)
g_object_freeze_notify (G_OBJECT (conn));
if (priv->current_msg) {
- g_return_if_fail (priv->current_msg->method == SOUP_METHOD_CONNECT);
+ g_return_if_fail (soup_message_get_method (priv->current_msg) == SOUP_METHOD_CONNECT);
clear_current_msg (conn);
}
@@ -304,7 +304,7 @@ set_current_msg (SoupConnection *conn, SoupMessage *msg)
g_signal_connect (msg, "got-body",
G_CALLBACK (current_msg_got_body), conn);
- if (priv->proxy_uri && msg->method == SOUP_METHOD_CONNECT)
+ if (priv->proxy_uri && soup_message_get_method (msg) == SOUP_METHOD_CONNECT)
soup_connection_event (conn, G_SOCKET_CLIENT_PROXY_NEGOTIATING, NULL);
g_object_thaw_notify (G_OBJECT (conn));