Home
last modified time | relevance | path

Searched refs:WSDL_CACHE_VERSION (Results 1 – 1 of 1) sorted by relevance

/PHP-7.3/ext/soap/
H A Dphp_sdl.c1178 #define WSDL_CACHE_VERSION 0x10 macro
1561 if (strncmp(in,"wsdl",4) != 0 || in[4] != WSDL_CACHE_VERSION || in[5] != '\0') { in get_sdl_from_cache()
2126 WSDL_CACHE_PUT_1(WSDL_CACHE_VERSION,out); in add_sdl_to_cache()
3217 if (WSDL_CACHE_VERSION <= 0x9f) { in get_sdl()
3218 key[len++] = (WSDL_CACHE_VERSION >> 8) + '0'; in get_sdl()
3220 key[len++] = (WSDL_CACHE_VERSION >> 8) - 10 + 'a'; in get_sdl()
3222 if ((WSDL_CACHE_VERSION & 0xf) <= 0x9) { in get_sdl()
3223 key[len++] = (WSDL_CACHE_VERSION & 0xf) + '0'; in get_sdl()
3225 key[len++] = (WSDL_CACHE_VERSION & 0xf) - 10 + 'a'; in get_sdl()

Completed in 14 milliseconds