diff options
author | Carlos Garcia Campos <cgarcia@igalia.com> | 2020-11-06 14:06:01 +0100 |
---|---|---|
committer | Carlos Garcia Campos <cgarcia@igalia.com> | 2020-11-06 14:35:22 +0100 |
commit | 97bb05552104615e1c9c9b53180e2f30a2ecb225 (patch) | |
tree | 4087e7550a6fa624d94ccb4547b42b4996de5922 /libsoup/soup-message.c | |
parent | 1827eeda856214b26b7222eb57b77b37558df334 (diff) | |
download | libsoup-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.c')
-rw-r--r-- | libsoup/soup-message.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libsoup/soup-message.c b/libsoup/soup-message.c index 809731ee..1a63bf79 100644 --- a/libsoup/soup-message.c +++ b/libsoup/soup-message.c @@ -1347,12 +1347,6 @@ soup_message_cleanup_response (SoupMessage *msg) * regardless its #SoupMessage:method, and allows reuse of existing * idle connections, instead of always requiring a new one, unless * #SOUP_MESSAGE_NEW_CONNECTION is set. - * @SOUP_MESSAGE_IGNORE_CONNECTION_LIMITS: Request that a new connection is - * created for the message if there aren't idle connections available - * and it's not possible to create new connections due to any of the - * connection limits has been reached. If a dedicated connection is - * eventually created for this message, it will be dropped when the - * message finishes. Since 2.50 * @SOUP_MESSAGE_DO_NOT_USE_AUTH_CACHE: The #SoupAuthManager should not use * the credentials cache for this message, neither to use cached credentials * to automatically authenticate this message nor to cache the credentials |