static_variable_buf  383 sapi/isapi/php5isapi.c 	char static_variable_buf[ISAPI_SERVER_VAR_BUF_SIZE];
static_variable_buf  391 sapi/isapi/php5isapi.c 	if( lpECB->GetServerVariable( lpECB->ConnID, "SSL_CLIENT_C", static_variable_buf, &variable_len ) && static_variable_buf[0] ) {
static_variable_buf  392 sapi/isapi/php5isapi.c 		strlcat( static_cons_buf, static_variable_buf,  ISAPI_SERVER_VAR_BUF_SIZE);
static_variable_buf  396 sapi/isapi/php5isapi.c 	if( lpECB->GetServerVariable( lpECB->ConnID, "SSL_CLIENT_ST", static_variable_buf, &variable_len ) && static_variable_buf[0] ) {
static_variable_buf  397 sapi/isapi/php5isapi.c 		strlcat( static_cons_buf, static_variable_buf, ISAPI_SERVER_VAR_BUF_SIZE );
static_variable_buf  403 sapi/isapi/php5isapi.c 	if( lpECB->GetServerVariable( lpECB->ConnID, "SSL_CLIENT_I_C", static_variable_buf, &variable_len ) && static_variable_buf[0] ) {
static_variable_buf  404 sapi/isapi/php5isapi.c 		strlcat( static_cons_buf, static_variable_buf, ISAPI_SERVER_VAR_BUF_SIZE );
static_variable_buf  408 sapi/isapi/php5isapi.c 	if( lpECB->GetServerVariable( lpECB->ConnID, "SSL_CLIENT_I_ST", static_variable_buf, &variable_len ) && static_variable_buf[0] ) {
static_variable_buf  409 sapi/isapi/php5isapi.c 		strlcat( static_cons_buf, static_variable_buf, ISAPI_SERVER_VAR_BUF_SIZE );
static_variable_buf  416 sapi/isapi/php5isapi.c 	char static_variable_buf[ISAPI_SERVER_VAR_BUF_SIZE];
static_variable_buf  425 sapi/isapi/php5isapi.c 	lpECB->GetServerVariable(lpECB->ConnID, "SCRIPT_NAME", static_variable_buf, &scriptname_len);
static_variable_buf  430 sapi/isapi/php5isapi.c 	if ( lpECB->GetServerVariable(lpECB->ConnID, "PATH_INFO", static_variable_buf, &variable_len) && static_variable_buf[0] ) {
static_variable_buf  433 sapi/isapi/php5isapi.c 		php_register_variable( "PHP_SELF", static_variable_buf, track_vars_array TSRMLS_CC );
static_variable_buf  437 sapi/isapi/php5isapi.c 		php_register_variable( "PATH_INFO", static_variable_buf + scriptname_len - 1, track_vars_array TSRMLS_CC );
static_variable_buf  442 sapi/isapi/php5isapi.c 				static_variable_buf[ variable_len - 1 ] = '?';
static_variable_buf  443 sapi/isapi/php5isapi.c 				strcpy( static_variable_buf + variable_len, lpECB->lpszQueryString );
static_variable_buf  445 sapi/isapi/php5isapi.c 			php_register_variable( "URL", static_variable_buf, track_vars_array TSRMLS_CC );
static_variable_buf  446 sapi/isapi/php5isapi.c 			php_register_variable( "REQUEST_URI", static_variable_buf, track_vars_array TSRMLS_CC );
static_variable_buf  452 sapi/isapi/php5isapi.c 	if ( lpECB->GetServerVariable(lpECB->ConnID, "PATH_TRANSLATED", static_variable_buf, &variable_len) && static_variable_buf[0] ) {
static_variable_buf  453 sapi/isapi/php5isapi.c 		static_variable_buf[ variable_len - pathinfo_len - 1 ] = '\0';
static_variable_buf  454 sapi/isapi/php5isapi.c 		php_register_variable( "PATH_TRANSLATED", static_variable_buf, track_vars_array TSRMLS_CC );
static_variable_buf  459 sapi/isapi/php5isapi.c 	if ( lpECB->GetServerVariable(lpECB->ConnID, "AUTH_USER", static_variable_buf, &variable_len) && static_variable_buf[0] )  {
static_variable_buf  460 sapi/isapi/php5isapi.c 		php_register_variable( "PHP_AUTH_USER", static_variable_buf, track_vars_array TSRMLS_CC );
static_variable_buf  463 sapi/isapi/php5isapi.c 	if ( lpECB->GetServerVariable(lpECB->ConnID, "AUTH_PASSWORD", static_variable_buf, &variable_len) && static_variable_buf[0] )  {
static_variable_buf  464 sapi/isapi/php5isapi.c 		php_register_variable( "PHP_AUTH_PW", static_variable_buf, track_vars_array TSRMLS_CC );
static_variable_buf  467 sapi/isapi/php5isapi.c 	if ( lpECB->GetServerVariable(lpECB->ConnID, "AUTH_TYPE", static_variable_buf, &variable_len) && static_variable_buf[0] )  {
static_variable_buf  468 sapi/isapi/php5isapi.c 		php_register_variable( "AUTH_TYPE", static_variable_buf, track_vars_array TSRMLS_CC );
static_variable_buf  473 sapi/isapi/php5isapi.c 	if ( lpECB->GetServerVariable(lpECB->ConnID, "CERT_COOKIE", static_variable_buf, &variable_len) && static_variable_buf[0] ) {
static_variable_buf  478 sapi/isapi/php5isapi.c 	if ( lpECB->GetServerVariable(lpECB->ConnID, "SERVER_SOFTWARE", static_variable_buf, &variable_len) && static_variable_buf[0] )  {
static_variable_buf  479 sapi/isapi/php5isapi.c 		php_register_variable( "SERVER_SIGNATURE", static_variable_buf, track_vars_array TSRMLS_CC );
static_variable_buf  486 sapi/isapi/php5isapi.c 	char static_variable_buf[ISAPI_SERVER_VAR_BUF_SIZE];
static_variable_buf  496 sapi/isapi/php5isapi.c 	lpECB->GetServerVariable(lpECB->ConnID, "SCRIPT_NAME", static_variable_buf, &scriptname_len);
static_variable_buf  503 sapi/isapi/php5isapi.c 	if ( lpECB->GetServerVariable(lpECB->ConnID, "PATH_INFO", static_variable_buf, &variable_len) && static_variable_buf[0] ) {
static_variable_buf  506 sapi/isapi/php5isapi.c 		php_register_variable( "ORIG_PATH_INFO", static_variable_buf, track_vars_array TSRMLS_CC );
static_variable_buf  508 sapi/isapi/php5isapi.c 		strncpy(path_info_buf, static_variable_buf + scriptname_len - 1, sizeof(path_info_buf)-1);
static_variable_buf  514 sapi/isapi/php5isapi.c 				static_variable_buf[ variable_len - 1 ] = '?';
static_variable_buf  515 sapi/isapi/php5isapi.c 				strcpy( static_variable_buf + variable_len, lpECB->lpszQueryString );
static_variable_buf  517 sapi/isapi/php5isapi.c 			php_register_variable( "URL", static_variable_buf, track_vars_array TSRMLS_CC );
static_variable_buf  518 sapi/isapi/php5isapi.c 			php_register_variable( "REQUEST_URI", static_variable_buf, track_vars_array TSRMLS_CC );
static_variable_buf  521 sapi/isapi/php5isapi.c 		if ( lpECB->GetServerVariable(lpECB->ConnID, "PATH_TRANSLATED", static_variable_buf, &variable_len) && static_variable_buf[0] ) {
static_variable_buf  522 sapi/isapi/php5isapi.c 			php_register_variable( "ORIG_PATH_TRANSLATED", static_variable_buf, track_vars_array TSRMLS_CC );
static_variable_buf  533 sapi/isapi/php5isapi.c 	static_variable_buf[0] = '/';
static_variable_buf  534 sapi/isapi/php5isapi.c 	static_variable_buf[1] = 0;
static_variable_buf  536 sapi/isapi/php5isapi.c 	if (lpECB->ServerSupportFunction(lpECB->ConnID, HSE_REQ_MAP_URL_TO_PATH_EX, static_variable_buf, &variable_len, (LPDWORD) &humi)) {
static_variable_buf  547 sapi/isapi/php5isapi.c 		if (lpECB->GetServerVariable(lpECB->ConnID, "HTTP_AUTHORIZATION", static_variable_buf, &variable_len)
static_variable_buf  548 sapi/isapi/php5isapi.c 			&& static_variable_buf[0]) {
static_variable_buf  549 sapi/isapi/php5isapi.c 			php_handle_auth_data(static_variable_buf TSRMLS_CC);
static_variable_buf  566 sapi/isapi/php5isapi.c 	char static_variable_buf[ISAPI_SERVER_VAR_BUF_SIZE];
static_variable_buf  571 sapi/isapi/php5isapi.c 		if (lpECB->GetServerVariable(lpECB->ConnID, *p, static_variable_buf, &variable_len)
static_variable_buf  572 sapi/isapi/php5isapi.c 			&& static_variable_buf[0]) {
static_variable_buf  573 sapi/isapi/php5isapi.c 			php_register_variable(*p, static_variable_buf, track_vars_array TSRMLS_CC);
static_variable_buf  575 sapi/isapi/php5isapi.c 				recorded_values[p-server_variables] = estrndup(static_variable_buf, variable_len);
static_variable_buf  738 sapi/isapi/php5isapi.c 	char static_variable_buf[ISAPI_SERVER_VAR_BUF_SIZE];
static_variable_buf  757 sapi/isapi/php5isapi.c 	if(lpECB->GetServerVariable(lpECB->ConnID, "SCRIPT_FILENAME", static_variable_buf, &variable_len)) {
static_variable_buf  758 sapi/isapi/php5isapi.c 		SG(request_info).path_translated = estrdup(static_variable_buf);
static_variable_buf  764 sapi/isapi/php5isapi.c 	lpECB->GetServerVariable(lpECB->ConnID, "SCRIPT_NAME", static_variable_buf, &variable_len);
static_variable_buf  765 sapi/isapi/php5isapi.c 	if (lpECB->ServerSupportFunction(lpECB->ConnID, HSE_REQ_MAP_URL_TO_PATH_EX, static_variable_buf, &variable_len, (LPDWORD) &humi)) {
static_variable_buf  282 sapi/pi3web/pi3web_sapi.c 	char static_variable_buf[PI3WEB_SERVER_VAR_BUF_SIZE];
static_variable_buf  297 sapi/pi3web/pi3web_sapi.c 		if (lpCB->GetServerVariable(lpCB->ConnID, pKey, static_variable_buf, &variable_len)
static_variable_buf  299 sapi/pi3web/pi3web_sapi.c 			php_register_variable(pKey, static_variable_buf, track_vars_array TSRMLS_CC);
static_variable_buf  313 sapi/pi3web/pi3web_sapi.c 	if (lpCB->GetServerVariable(lpCB->ConnID, "SCRIPT_NAME", static_variable_buf, &variable_len)
static_variable_buf  315 sapi/pi3web/pi3web_sapi.c 		php_register_variable("PHP_SELF", static_variable_buf, track_vars_array TSRMLS_CC);