summaryrefslogtreecommitdiff
path: root/libsoup/soup-message.h
diff options
context:
space:
mode:
authorCarlos Garcia Campos <cgarcia@igalia.com>2020-11-06 14:06:01 +0100
committerCarlos Garcia Campos <cgarcia@igalia.com>2020-11-06 14:35:22 +0100
commit97bb05552104615e1c9c9b53180e2f30a2ecb225 (patch)
tree4087e7550a6fa624d94ccb4547b42b4996de5922 /libsoup/soup-message.h
parent1827eeda856214b26b7222eb57b77b37558df334 (diff)
downloadlibsoup-carlosgc/message-flags.tar.gz
message: remove SOUP_MESSAGE_IGNORE_CONNECTION_LIMITS flagcarlosgc/message-flags
This was added for a very specific case of WebKit and it's no longer needed. Nobody else seems to be using it and it complicates the connection creation algorithm, so better remove it.
Diffstat (limited to 'libsoup/soup-message.h')
-rw-r--r--libsoup/soup-message.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/libsoup/soup-message.h b/libsoup/soup-message.h
index 36094843..f4fb6c4f 100644
--- a/libsoup/soup-message.h
+++ b/libsoup/soup-message.h
@@ -77,8 +77,7 @@ typedef enum {
SOUP_MESSAGE_NO_REDIRECT = (1 << 1),
SOUP_MESSAGE_NEW_CONNECTION = (1 << 2),
SOUP_MESSAGE_IDEMPOTENT = (1 << 3),
- SOUP_MESSAGE_IGNORE_CONNECTION_LIMITS = (1 << 4),
- SOUP_MESSAGE_DO_NOT_USE_AUTH_CACHE = (1 << 5)
+ SOUP_MESSAGE_DO_NOT_USE_AUTH_CACHE = (1 << 4)
} SoupMessageFlags;
SOUP_AVAILABLE_IN_2_4