"John Gruber" <[EMAIL PROTECTED]> wrote: > But bind on * should work too.. and the reply should come from the address > for the interface the request was sent to. It just doesn't, and I did not > have the time at the time to see why in the code.
It only works if you call bind() immediately upon receiving a packet. That's expensive, and causes the server to do a *lot* of work. A better solution is to explicitely list the addresses the server listens on, which is much less expensive, but requires a bit more code. Alan DeKok. - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
