P B <[EMAIL PROTECTED]> wrote: > I have a question regarding the the cached request- > response pairs in freeradius. Could someone please > tell me on what parameters is a request considered > to be a duplicate request (& the old response sent > again for it). > > Is it based on the same identifier and user-name in > the new and cached request or are other parameters > such as the source port number also checked?
If you're a sucker for punishment, you can read the code in src/main/request_list.c, and src/main/radiusd.c Otherwise, the answer is: Request ID, request code, source IP, source port If we see two messages with the same above 4 parameters, and their authentication vectors are different, then they're different requests. Alan DeKok. - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
