Hi, I read in LCR doc:
--------- each gateway group is associated with one or more <prefix, from pattern, priority> tuples. A gateway matches a request if user part of Request URI matches a prefix and caller's URI matches a from pattern in a tuple that belongs to the group of the gateway. ----------
Can "prefix" be empty (or NULL?) so any RURI matches it?
Thanks.
Iñaki Baz Castillo writes:
each gateway group is associated with one or more <prefix, from pattern, priority> tuples. A gateway matches a request if user part of Request URI matches a prefix and caller's URI matches a from pattern in a tuple that belongs to the group of the gateway.
Can "prefix" be empty (or NULL?) so any RURI matches it?
readme says that prefix is a string of characters. i'll add that that the string can be empty. empty prefix string of course matches any user part.
-- juha
Iñaki Baz Castillo writes:
readme says that prefix is a string of characters. i'll add that that the string can be empty. empty prefix string of course matches any user part.
That's exactly what I want. Thanks.
i check the code and both prefix and from pattern can be either null or empty and both match anything. i updated documentation accordingly.
-- juha
El Viernes, 20 de Marzo de 2009, Juha Heinanen escribió:
Iñaki Baz Castillo writes:
readme says that prefix is a string of characters. i'll add that that the string can be empty. empty prefix string of course matches any user part.
That's exactly what I want. Thanks.
i check the code and both prefix and from pattern can be either null or empty and both match anything. i updated documentation accordingly.
Ok, thanks a lot.