mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-01 21:18:52 +00:00
souphttpsrc: use status code macro instead of 407
Rest of the code is using the _PROXY_AUTHENTICATION_REQUIRED macro too. Easier to understand if you don't recall HTTP error codes by heart.
This commit is contained in:
parent
ac7d346355
commit
0e159e3b03
1 changed files with 2 additions and 1 deletions
|
@ -745,7 +745,8 @@ gst_soup_http_src_got_headers_cb (SoupMessage * msg, GstSoupHTTPSrc * src)
|
|||
soup_message_headers_foreach (msg->response_headers,
|
||||
gst_soup_http_src_headers_foreach, src);
|
||||
|
||||
if (msg->status_code == 407 && src->proxy_id && src->proxy_pw)
|
||||
if (msg->status_code == SOUP_STATUS_PROXY_AUTHENTICATION_REQUIRED &&
|
||||
src->proxy_id && src->proxy_pw)
|
||||
return;
|
||||
|
||||
if (src->automatic_redirect && SOUP_STATUS_IS_REDIRECTION (msg->status_code)) {
|
||||
|
|
Loading…
Reference in a new issue