Home
last modified time | relevance | path

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

/PHP-8.2/ext/soap/
H A Dphp_sdl.c1190 #define WSDL_CACHE_VERSION 0x10 macro
1573 if (strncmp(in,"wsdl",4) != 0 || in[4] != WSDL_CACHE_VERSION || in[5] != '\0') { in get_sdl_from_cache()
2138 WSDL_CACHE_PUT_1(WSDL_CACHE_VERSION,out); in add_sdl_to_cache()
3239 if (WSDL_CACHE_VERSION <= 0x9f) { in get_sdl()
3240 key[len++] = (WSDL_CACHE_VERSION >> 8) + '0'; in get_sdl()
3242 key[len++] = (WSDL_CACHE_VERSION >> 8) - 10 + 'a'; in get_sdl()
3244 if ((WSDL_CACHE_VERSION & 0xf) <= 0x9) { in get_sdl()
3245 key[len++] = (WSDL_CACHE_VERSION & 0xf) + '0'; in get_sdl()
3247 key[len++] = (WSDL_CACHE_VERSION & 0xf) - 10 + 'a'; in get_sdl()

Completed in 14 milliseconds