mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Be a bit more lenient in the maximum number of redirects allowed.
Chrome and Firefox have a limit of 20. IE has a limit of 8. Reviewed by: des Approved by: cperciva MFC after: 3 days
This commit is contained in:
parent
398de06dcb
commit
e6c0e200f4
1 changed files with 1 additions and 1 deletions
|
|
@ -94,7 +94,7 @@ __FBSDID("$FreeBSD$");
|
|||
#include "httperr.h"
|
||||
|
||||
/* Maximum number of redirects to follow */
|
||||
#define MAX_REDIRECT 5
|
||||
#define MAX_REDIRECT 20
|
||||
|
||||
/* Symbolic names for reply codes we care about */
|
||||
#define HTTP_OK 200
|
||||
|
|
|
|||
Loading…
Reference in a new issue