I have sent 2 servlet requests to my G-WAN server:
domain.com/?cspA
127.0.0.8:8888/?cspB
By changing query character to '#', I want to temporay block all servlets. After a while, I want to switch back to '?'.
But the servlet cspB on 127.0..:8888 is not conforming to this scenario. It works even when the query char has been set to '#'.
The cspA servlet works owerver: it cannot be accessed.
What happens?
u8 *query_char = (u8*)get_env(argv, QUERY_CHAR);
*query_char = '#';
// do something for a while...
// restore the query character
*query_char = '?';
I am using G-WAN v4. 3.14, ubuntu 12.04 latest updated.