--- /usr/src/sys/netinet/accf_http.c.orig 2007-11-11 13:32:12.000000000 +0000 +++ /usr/src/sys/netinet/accf_http.c 2009-06-22 10:42:35.000000000 +0000 @@ -38,7 +38,7 @@ #include #include -/* check for GET/HEAD */ +/* check for GET/HEAD/POST */ static void sohashttpget(struct socket *so, void *arg, int waitflag); /* check for HTTP/1.0 or HTTP/1.1 */ static void soparsehttpvers(struct socket *so, void *arg, int waitflag); @@ -178,6 +178,9 @@ case 'H': STRSETUP(cmp, cmplen, "EAD "); break; + case 'P': + STRSETUP(cmp, cmplen, "OST "); + break; default: goto fallout; }