Status: Accepted
Owner: [email protected]
Labels: Type-Defect Priority-Medium Component-SS7 Roadmap-Fix

New issue 138 by [email protected]: SGW multilink support for same linkset
http://code.google.com/p/jss7/issues/detail?id=138

Several links are not supported on mtp3 ( actually there is a bug )
Changes
1)
Instead of :
if (!l4IsUp)   {    l4IsUp = true;  linkUp(mtp2);  }
should be :
linkUp(mtp2);

2) linkup function code
private void linkUp(Mtp2 link) {

    if(link.mtp2Listener != null) {
        link.mtp2Listener.linkUp();
    }

    linkset.add(link);

    if (!l4IsUp)
    {
         if (linkset.isActive() && this.mtp3Listener != null) {
            try {
                mtp3Listener.linkUp();
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }

   l4IsUp=true;
   if (logger.isInfoEnabled()) {
logger.info(String.format("(%s) Link now IN_SERVICE", link.getName()));
   }
}

Can not commit since need to merge and test all the changes first

Reply via email to