post_max_size     264 main/SAPI.c    	if ((SG(post_max_size) > 0) && (SG(request_info).content_length > SG(post_max_size))) {
post_max_size     266 main/SAPI.c    					SG(request_info).content_length, SG(post_max_size));
post_max_size     290 main/SAPI.c    			if ((SG(post_max_size) > 0) && (SG(read_post_bytes) > SG(post_max_size))) {
post_max_size     291 main/SAPI.c    				php_error_docref(NULL, E_WARNING, "Actual POST length does not match Content-Length, and exceeds " ZEND_LONG_FMT " bytes", SG(post_max_size));
post_max_size     132 main/SAPI.h    	zend_long post_max_size;
post_max_size     540 main/main.c    	STD_PHP_INI_ENTRY("post_max_size",			"8M",		PHP_INI_SYSTEM|PHP_INI_PERDIR,		OnUpdateLong,			post_max_size,			sapi_globals_struct,sapi_globals)
post_max_size     720 main/rfc1867.c 	if (SG(post_max_size) > 0 && SG(request_info).content_length > SG(post_max_size)) {
post_max_size     721 main/rfc1867.c 		sapi_module.sapi_error(E_WARNING, "POST Content-Length of " ZEND_LONG_FMT " bytes exceeds the limit of " ZEND_LONG_FMT " bytes", SG(request_info).content_length, SG(post_max_size));