Home
last modified time | relevance | path

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

/PHP-7.2/ext/soap/
H A Dphp_sdl.c1177 #define WSDL_CACHE_VERSION 0x10 macro
1560 if (strncmp(in,"wsdl",4) != 0 || in[4] != WSDL_CACHE_VERSION || in[5] != '\0') { in get_sdl_from_cache()
2125 WSDL_CACHE_PUT_1(WSDL_CACHE_VERSION,out); in add_sdl_to_cache()
3216 if (WSDL_CACHE_VERSION <= 0x9f) { in get_sdl()
3217 key[len++] = (WSDL_CACHE_VERSION >> 8) + '0'; in get_sdl()
3219 key[len++] = (WSDL_CACHE_VERSION >> 8) - 10 + 'a'; in get_sdl()
3221 if ((WSDL_CACHE_VERSION & 0xf) <= 0x9) { in get_sdl()
3222 key[len++] = (WSDL_CACHE_VERSION & 0xf) + '0'; in get_sdl()
3224 key[len++] = (WSDL_CACHE_VERSION & 0xf) - 10 + 'a'; in get_sdl()

Completed in 14 milliseconds