<div dir="ltr">Hi,<div>I've got a question about proxy authentication - is there any way to determine if we previously already asked remote party to authenticate or not? For some reason it looks like to me that flags are not persistent during proxy authentication process, so my code doesn't work as flag is never set. Here's a code snippet:</div><div><br></div><div>if (!proxy_authorize("","subscriber"))</div><div>{</div><div> if (isflagset(7))</div><div> {</div><div>   # We already tried to authenticate, do some code here</div><div> }</div><div> else</div><div> {</div><div>   # We haven't tried to authenticate yet, challenge the request</div><div>   setflag(7);</div><div>   proxy_challenge("","1");</div><div>   exit;</div><div> }</div><div>}</div><div>else</div><div>{</div><div>... successful auth done</div><div>}</div><div><br></div><div>I need this as I want to try to authenticate users and if remote party can't authenticate - then try to do IP based authentication, for example.</div><div><br></div><div>Thanks for help!</div></div>