On Wed, Nov 3, 2010 at 11:13 PM, Joegen Baclor <jbac...@ezuce.com> wrote:
> This is a one liner fix in the relay code.
>
> for (int i = config.getPortRangeLowerBound(); i < config
>                 .getPortRangeUpperBound(); i++) {
>             try {
>                 DatagramSocket sock = new DatagramSocket(i, localAddr);
>                 sock.close();
>             } catch (Exception ex) {
>                 logger.error(String.format("Failed to bind to %s:%d",
>                         localAddr, i), ex);
>                 throw ex;  /// <----- Simply comment this out and we are
> good to go.
>             }
>         }
>
>
> if everyone concur, we can patch this right away

+1

Nice find.
_______________________________________________
sipx-users mailing list
sipx-users@list.sipfoundry.org
List Archive: http://list.sipfoundry.org/archive/sipx-users/

Reply via email to