You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
Thank you for sharing your project! I have been trying to extend the simulation to the case with multiple eNBs/SGWs and to finalize GTP-U protocol, to support the data plane implementation.
I've noticed one probable bug: in the S1APConnection.cc, function S1APConnectionTable::findConnectionForCellId(), line 749, the if statement always delivers result "true" (I'm using multiple enbs and cellids, accordigly), independent on the argument values:
if (!strncmp(conn->getCellId(), cellId, CELLID_CODED_SIZE))
I have replaced it with bytewise comparison, and now it works as expected.
Maybe it will be helpful for you.
The text was updated successfully, but these errors were encountered:
Hi,
Thank you for sharing your project! I have been trying to extend the simulation to the case with multiple eNBs/SGWs and to finalize GTP-U protocol, to support the data plane implementation.
I've noticed one probable bug: in the S1APConnection.cc, function S1APConnectionTable::findConnectionForCellId(), line 749, the if statement always delivers result "true" (I'm using multiple enbs and cellids, accordigly), independent on the argument values:
if (!strncmp(conn->getCellId(), cellId, CELLID_CODED_SIZE))
I have replaced it with bytewise comparison, and now it works as expected.
Maybe it will be helpful for you.
The text was updated successfully, but these errors were encountered: