Update to version 1.8.8.

This commit is contained in:
Dmitry Sivachenko 2018-04-19 17:42:34 +00:00
parent e06d8d5233
commit caaab1c010
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=467791
3 changed files with 4 additions and 25 deletions

View file

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= haproxy
DISTVERSION= 1.8.7
PORTREVISION= 1
DISTVERSION= 1.8.8
CATEGORIES= net www
MASTER_SITES= http://www.haproxy.org/download/1.8/src/
PKGNAMESUFFIX= -devel

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1523075247
SHA256 (haproxy-1.8.7.tar.gz) = 0584a52c9a9095470be8d4216b31e7a312873752d5eb66be4eb3ce51b2875317
SIZE (haproxy-1.8.7.tar.gz) = 2053310
TIMESTAMP = 1524159668
SHA256 (haproxy-1.8.8.tar.gz) = bcc05ab824bd2f89b8b21ac05459c0a0a0e02247b57ffe441d52cfe771daea92
SIZE (haproxy-1.8.8.tar.gz) = 2054534

View file

@ -1,20 +0,0 @@
--- src/mux_h2.c
+++ src/mux_h2.c
@@ -1735,7 +1735,7 @@ static void h2_process_demux(struct h2c *h2c)
goto fail;
}
- if ((int)hdr.len < 0 || (int)hdr.len > h2c->mfs) {
+ if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
/* RFC7540#3.5: a GOAWAY frame MAY be omitted */
h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
h2c->st0 = H2_CS_ERROR2;
@@ -1765,7 +1765,7 @@ static void h2_process_demux(struct h2c *h2c)
if (!h2_peek_frame_hdr(h2c->dbuf, &hdr))
break;
- if ((int)hdr.len < 0 || (int)hdr.len > h2c->mfs) {
+ if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
h2c->st0 = H2_CS_ERROR;
break;