Home
last modified time | relevance | path

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

/PHP-7.4/ext/soap/
H A Dphp_sdl.c1187 #define WSDL_CACHE_VERSION 0x10 macro
1570 if (strncmp(in,"wsdl",4) != 0 || in[4] != WSDL_CACHE_VERSION || in[5] != '\0') { in get_sdl_from_cache()
2135 WSDL_CACHE_PUT_1(WSDL_CACHE_VERSION,out); in add_sdl_to_cache()
3226 if (WSDL_CACHE_VERSION <= 0x9f) { in get_sdl()
3227 key[len++] = (WSDL_CACHE_VERSION >> 8) + '0'; in get_sdl()
3229 key[len++] = (WSDL_CACHE_VERSION >> 8) - 10 + 'a'; in get_sdl()
3231 if ((WSDL_CACHE_VERSION & 0xf) <= 0x9) { in get_sdl()
3232 key[len++] = (WSDL_CACHE_VERSION & 0xf) + '0'; in get_sdl()
3234 key[len++] = (WSDL_CACHE_VERSION & 0xf) - 10 + 'a'; in get_sdl()

Completed in 24 milliseconds